data的行有NEW、DELETE、EDIT、NONE
本例判断行状态为new(新增)时,data不只读,否则data只读,具体实现如下:
1.在model勾选函数中定义一个observable变量
var Model = function() { this.callParent(); this.rowReadonly = justep.Bind.observable(true); };
2.data的onIndexChanged事件中判断行状态给变量赋值
data的行有NEW、DELETE、EDIT、NONE
本例判断行状态为new(新增)时,data不只读,否则data只读,具体实现如下:
1.在model勾选函数中定义一个observable变量
var Model = function() { this.callParent(); this.rowReadonly = justep.Bind.observable(true); };
2.data的onIndexChanged事件中判断行状态给变量赋值
评一波