我想将docId的值重置为null。
你能告诉我怎么做吗?
console.dir(dijit.byId("grid"));
rowIndex = e.rowIndex;
var item = this.getItem(rowIndex);
var docId = this.store.getValue(item, "ID");
答案 0 :(得分:0)
使用unsetAttribute,如下所示:
rowIndex = e.rowIndex;
var item = this.getItem(rowIndex);
this.store.unsetAttribute(item, "ID");
并且不要忘记刷新网格:
this.update();