Number of items showing after filter

Hello,

After you do a filter on the data view component, how do you inquire about how many items are still showing?

Thanks,
Mark

dataview.dataCount();

dataCount is telling me the total number of rows in the set, NOT just the ones that are being shown after a filter – which is what I want. In the data grid, you could iterate over the grid to get the row index number if something was shown. But i’m not sure if you can do the same on the data view object.

dataview.dataCount() - returns the number of items in the component, after using dataview.filter it will show count of items which are exist in the dataview after filtering ( not all items, but only ones which are here after filtering )

data grid, you could iterate over the grid to get the row index number if something was shown

dataview.data.each(function(obj){ ... do some ... });