Hello Telerik,
Our solution needs a footer row for the grids, for now containing only the item count.
I have browsed some of solution for this such as this one, but it won't attend to my needs for a couple of reasons:
- the footer cells need to be merged as if there was a column spam there
- the footer needs to be independent of a column. A simple count of all the rows before and after the grid built-in filtering.
Regarding the second point, please do correct me if I am wrong, but I am assuming that the
<
telerik:GridViewDataColumn.AggregateFunctions
>
<
telerik:CountFunction
Caption
=
"Count: "
/>
</
telerik:GridViewDataColumn.AggregateFunctions
>
is out of question, since it is column-bound. And the reason why it won't serve is because my grid has a columnchooser. if the user unselect that column, the count will disappear. Which is pointless. So I didn't even bother looking too deep on how to merge cells horizontally, since I believe a row just below the grid containing the count should be the way to go.
Furthermore my grid receives a VirtualQueryableCollectionView as datasource. And the only indicator of the Rows Count that it has is the VirtualItemCount = data.Count(). The problem is that property won't change in case the user filters the grid.
Finally my question is: where can I find the Grid Total Rows Count that will also show the right number after filtering?
Thank you