Hi ,
I'm using wingrid 8.2 ver. i have created three groups using SortedColumns.Add method.
Right now it is showing 3 group by rows and its child rows.
Now i want to hide or remove first 2 group by rows not its child rows. Is there any way to do it.
Please let me know.
Thanks
Amit
Hi Amit,
No, you can't hide a parent GroupByRow without hiding it's children.
If you want to group the grid based on the combined values of 3 fields, what you can do is write your own custom SortComparer to sort the data and your own custom GroupByEvaluator to handle the grouping. Then you would simply group on one column and group by all three fields at once.
Hi Mike.
Can you provide me the sample or link so i cam impliment