0

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

4

1 回答 1

0

尝试在你的网格声明中给出这个

filter: {
             isServerSide: true,                 
 }

//它应该自动触发请求

于 2014-05-26T13:33:43.357 回答