I am currently using GridView to display tabular data. I need to merge cells in the first column that have equal values. At the moment I have code in the PreRender
event to set the RowSpan
property for me, and it's working fine.
The problem is I cannot use paging, since the pages will split in the middle of a section where the first field is equal.
I want the record count for paging to count one for each of the merged rows, rather than one for each sub-row.
Is this possible with GridView or some other jQuery grid?