如何更改“gridpanel”商店中的数据?
我尝试这样做:
cellclick: function (th, td, cellIndex, record, tr, rowIndex, e, eOpts) {
record.set('hasPast', '-');
th.getStore().insert(rowIndex + 1, record.data.pastRecal);
}
但它给出了错误!'cellclick' - 我的网格上的单元格单击事件的侦听器。
来自 ext-all-debug.js 的错误(在此代码段中):
urlAppend : function(url, string) {
if (!Ext.isEmpty(string)) {
return url + (url.indexOf('?') === -1 ? '?' : '&') + string;
}
return url;
},
网址未定义
谢谢!