我在我的应用程序中使用 OnDemandGrid 和 JSONrest 存储。第一次,网格加载正常,如果我再次搜索其他数据,网格中已经存在的数据与新数据重叠。有人可以告诉我如何重置或刷新 OnDemandGrid?
这是我的代码,
function (request, Memory, OnDemandGrid,JsonRest) {
var jsonstore = new JsonRest({target: url,idProperty: "srno"});
grid = new OnDemandGrid({
store: jsonstore,
columns: Layout,
minRowsPerPage : 40,
maxRowsPerPage : 40,
keepScrollPosition : true,
loadingMessage: "Loading data...",
noDataMessage: "No results found."
}, "grid");
grid.startup();
});