根据我在互联网上阅读的有关DataGrid
分页的内容,我仍然可以使其发挥作用。我有DataGrid
这样的话:
var grid = new DataGrid({
store: dataStore = new ObjectStore({objectStore: jsonrest_store}),
structure: [
{name: 'aaa', field: 'aaa', 'width': initialCol1},
{name: 'bbb', field: 'bbb', 'width': initialCol2},
{name: 'ccc', field: 'ccc', 'width': initialCol3},
{name: 'ddd', field: 'ddd', 'width': initialCol4}
],
rowsPerPage: 10,
autoHeight: 8,
keepRows: 100
}, "id_of_container");
grid.startup();
我尝试了rowsPerPage
和autoheight(number/off)
的不同组合,但每当我向下滚动时,即使在ObjectStore
的提取上也没有进行任何调用。有谁知道问题是什么?
答案 0 :(得分:0)
尝试在网格声明中提供此功能
filter: {
isServerSide: true,
}
//它应自动触发请求