access list of filtered items in dataview

后端 未结 2 1116
渐次进展
渐次进展 2021-02-15 16:06

I\'m using a DataView to populate the Grid, and using filters to interact with the visible rows. My problem is after applying the filters, on rows change, or rows count change..

2条回答
  •  被撕碎了的回忆
    2021-02-15 16:33

    Use dataView.getLength() and dataView.getItem(index) to access filtered/paged/grouped data. This is the interface the grid is using to talk to the data source.

提交回复
热议问题