我有一个网格,我要动态地设置它的存储。
我之前在stackoverflow上看到过这个问题:ExtJS 4 Change grid store on the fly
正如最佳答案所说,我reconfigure
在网格上做了方法。一切正常,数据加载到网格中,但我的重要问题是调用方法后网格的事件不再起作用reconfigure
,例如我的actioncolumn
网格中有一个,之后,handler
回调函数不起作用:
items: [{
icon: '/accept.png',
tooltip: "Boo",
handler: function(grid, rowIndex, colIndex) {
debugger;
}
}]
还有其他解决方案吗?