根据我在互联网上阅读的有关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
. 有谁知道问题是什么?