//我的网格
ListStore< PojoSurveyReportApproved> store = new ListStore< PojoSurveyReportApproved>(loader);
List<ColumnConfig> configs = getSurvey(list);
cm = new ColumnModel(configs);
cp = new ContentPanel();
final Grid< PojoSurveyReportApproved> grid = new Grid< PojoSurveyReportApproved>(store, cm);
grid.setTitle("ddddddd");
grid.setBorders(true);
grid.getAriaSupport().setDescribedBy(toolBar.getId() + "-display");
cp.removeAll();
cp.add(grid);
这是我的网格,它动态加载。每当它发生变化时,应该检索网格中的所有记录,我可以轻松地将其导出到 Excel。
只是我想要的是网格中的所有记录作为数组或列表,是否有任何侦听器来处理它或者我可以获得所有记录的任何方式。
我已经通过在商店中添加一个监听器以某些方式进行了尝试,但它并没有给我结果