0
在我的劍道網格我想打一個字段不可編輯,我的數據源是通過Ajax調用饒人,我不喜歡以下但不工作:劍道網編輯虛假不工作
$("#turbingrid").kendoGrid({
dataSource: result,
scrollable: false,
schema: {
model: {
id: "DeviceIP",
fields: {
DeviceIP: {
editable:false
}
}
}
columns: [
{ field: 'DeviceIP', title: 'DeviceIP', width: '100px'},
{ field: 'Producer', title: 'Producer', width: '80px'},
editable: "popup"
});
究竟你是「不工作」是什麼意思?有錯誤嗎? – Supersnake
@Supersnake不是錯誤,問題是我不希望設備可編輯,但即使當我設置「可編輯:false」它仍然可編輯! – moris62