Kendo UI网格有条件地可编辑单元格

时间:2015-03-06 12:30:31

标签: javascript jquery kendo-ui kendo-grid

我正在尝试通过编写代码来在kendo中创建有条件的可编辑单元格:

   edit: function (e) {                         
      var kendoTextBox = e.container.find("input[name=Ordertype]")[0];
      if (kendoTextBox)
        kendoTextBox.enable(e.model.RequestAmount == 0);
    },

当RequestAmount列为0时,ordertype列应该是可编辑的,但不是。有人能告诉我哪里错了吗?

1 个答案:

答案 0 :(得分:-1)

试试这个

edit: function (e) {
    var kendoTextBox = e.container.find("input[name=Ordertype]")[0];
    if (kendoTextBox && e.model.RequestAmount !== 0) 
        this.closeCell();
}