初始化后,Kendo Grid更改单元格编辑模式

时间:2013-08-19 05:26:23

标签: javascript jquery kendo-ui kendo-grid

我网格中的所有单元格最初都可以编辑。

我想根据值禁用某些单元格的单元格编辑。

如何做到这一点?

我的触发设置如下:

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

0 个答案:

没有答案