仅设置readonly字段第一行(Kendo UI)

时间:2017-07-20 19:48:38

标签: kendo-ui

我想在网格上设置只读字段,但仅第一个行。我怎样才能做到这一点?

enter image description here

欢迎任何建议!

1 个答案:

答案 0 :(得分:1)

您可以使用编辑功能,如

edit: function(e) {

      //add your custom logic here as if condition 
      //as for this example it just disable the one with id 1
      //or maybe ada a new attribute like isEditable = boolean upon datasource.parse then check it
      if (e.model.id == 1) {
         //revert edited cell back to `read` mode
         this.closeCell();
      }
}

嗯,这不是完全阻止开放,它只是在它打开后立即关闭它我认为。但它是可行的选择,因为我甚至看不到变化。工作示例dojo,这实际上是在kendo forum here

中消化的