Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
180
group
posted

hi. I have the following problem. Step to my grid a hierarchical dataset. The first grouping me he does the grid according to the report of the dataset. set these properties for the system:

Dim sortCol As New UltraGridColumn
sortCol = GRID_STAMPE.DisplayLayout.Bands(0).Columns.FromKey("INDICE")
sortCol.SortIndicator = SortIndicator.Ascending
GRID_STAMPE.DisplayLayout.Bands(0).SortedColumns.Add(sortCol, True)
sortCol = New UltraGridColumn
sortCol = GRID_STAMPE.DisplayLayout.Bands(1).Columns.FromKey("INDICE")
sortCol.SortIndicator = SortIndicator.Ascending
GRID_STAMPE.DisplayLayout.Bands(1).SortedColumns.Add(sortCol, True)

The second group I want to do it based on a column of the grid description 1st
How can I do?