I have a table with Hierarchal rows, meaning I have a row which has child rows. If I click the column heading to sort the rows, only the parent rows are getting sorted. The child rows are not getting effected. How to apply sorting on the child rows ?
Hi,
There's no way to do this automatically. The sorting applies to the column, which is contained in the band. So sorting is always done on the band level.
What you could do is handle the AfterSortChange event of the grid and trap for changes to the sorting and then copy the same settings from the parent band to the child band and vice versa to keep them in synch.