从我在互联网上读到的关于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
时也不会进行任何调用。有谁知道问题是什么?
尝试在网格声明中给出这个
filter: {
isServerSide: true,
}
它应该自动触发请求