DOJO DataGrid+JsonRest+pagination



从我在互联网上读到的关于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(); 

我尝试了rowsPerPageautoheight(number/off)的不同组合,但是每当我向下滚动时,即使在获取ObjectStore时也不会进行任何调用。有谁知道问题是什么?

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

filter: {
             isServerSide: true,                 
 }

它应该自动触发请求

相关内容

  • 没有找到相关文章

最新更新