我网格中的所有单元格最初都可以编辑。
我想根据值禁用某些单元格的单元格编辑。
如何做到这一点?
我的触发设置如下:
dataBound: function() {
$('td').each(function() {
if ($(this).children('span').data('route') == 2) {
$(this).css('background', '#CCC')
// Disable cell editing for this cell
}
})
},
我需要知道的是将该单元格的参数设置为可编辑的行:false,例如this.something.editable = false