0

我有以下代码用于在 DataGrid 的每一行中添加按钮:

structure: [
    {field: 'msConstId', width: '0%', name: 'Milestone',hidden: true},
    {field: 'edit', width: '8%', name: 'Edit',formatter: function(data, rowIndex) { 
         return new dijit.form.Button({style: "width: 80px;",label:"Edit", iconClass:"dijitIconEditTask",showLabel:true, onClick:function(){    updateMilestone.show(); populateUpdateControls(); }});
    }},
    {field: 'delete', width: '10%', name: 'Delete',formatter: function(data, rowIndex) {
         return new dijit.form.Button({style: "width: 80px;",label:"Delete", iconClass:"dijitIconDelete",showLabel:true, onClick:function(){    deleteMilestoneDialog(); }});
    }}
]

问题是我想为每个按钮分配一个 id 作为“editBtnRowIndex”和“deleteBtnRowIndex”。我想使用 id 来启用和禁用特定网格行中的按钮。

那可能吗?

4

1 回答 1

0

我不得不通过查看其他字段中的数据并使用以下内容禁用该行的按钮来解决此问题:

var rowdata = grid.getItem(rowIndex);

rowIndex 作为参数传递给格式化程序函数。

var val = rowdata.myRowID;
if(val=='specific value') {
   //return disabled button
} else {
   //return enabled button
}
于 2012-09-07T01:32:07.720 回答