In my grid, I want to introduce a feature like, user can filter the grid on any column, then he will right click and select all that filter items. When he clicks select all from the context menu, i want to add the filter items to fixed rows, how can i do this.
Thanks!
That's a good way to do it. But just be careful. If you fix too many rows, they will fill up the entire grid and there won't be any way to see the unfixed rows.
I figured out how to do that, please correct me if I am wrong
For Each row As UltraGridRow In Me.UltraGrid1.Rows.GetFilteredInNonGroupByRows row.Fixed = TrueNext
The grid has 5000 rows. User narrowed the grid (let us say 40 rows) by filtering on a particular column. How do i loop through the filter rows that are in view to make it fixed
Hi,
Which part of this is giving you trouble?
To fix a row in code, you just set the row.Fixed property to true.