如何从超过 1 页的网格中获取所有数据?
我只设置在一页中显示 50 条记录,但我的总数据最多为 52 条记录,它们存储在 2 页中。
我可以知道如何从这 2 页中获取所有数据吗?
以下是只能获取一页数据的代码...
ExportButtonTestJS = Ext.extend(One.Report, {
reportName: 'ExportButtonTestRpt',
autoExecute: true,
isDetailPage: false,
listeners: {
bbarconfig: function(report, bbarConfig) {
bbarConfig.items.push({
xtype: 'button',
text: 'Export',
disabled: false,
onClick : function () {
console.log(report.grid.getStore().data.items);
}
});
}
}
});