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(); }});
    }}
]

問題は、各ボタンに「editBtnRowIndex」および「deleteBtnRowIndex」としてIDを割り当てたいことです。特定のグリッド行のボタンを有効または無効にするために 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 に答える