应用过滤后获取数据源
Get datasource after applying filtering
我正在使用 igGrid,我想在应用过滤后获取网格的数据源
我找到了这个link
http://www.infragistics.com/community/forums/t/79677.aspx 这很有用,但没有回答我的问题。
这是我用来过滤网格的代码
$grid.igGridFiltering("filter", filterExpressions, false);
现在我需要做这样的事情
$('#grid1').igGrid('option','dataSource') //but this gives me the dataSource before filtering!
您可以使用以下语法获取过滤后的数据:
$("#grid1").igGrid().data("igGrid").dataSource.dataView()
当网格具有分页时,您可以使用以下语法获取过滤后的数据:
$("#Grid1").igGrid().data("igGrid").dataSource.filteredData()
我正在使用 igGrid,我想在应用过滤后获取网格的数据源
我找到了这个link http://www.infragistics.com/community/forums/t/79677.aspx 这很有用,但没有回答我的问题。
这是我用来过滤网格的代码
$grid.igGridFiltering("filter", filterExpressions, false);
现在我需要做这样的事情
$('#grid1').igGrid('option','dataSource') //but this gives me the dataSource before filtering!
您可以使用以下语法获取过滤后的数据:
$("#grid1").igGrid().data("igGrid").dataSource.dataView()
当网格具有分页时,您可以使用以下语法获取过滤后的数据:
$("#Grid1").igGrid().data("igGrid").dataSource.filteredData()