Hi
I have a groupby row grid with summary settings and when the grid loads, the first groupby row summary is selected (shows in a different color). Is there a way to deselect it?
Below is the screen shot.. If you see here., the first groupby row is selected and shows in a different color..
Thanks,
if you dont want any row to be selected you can use
ultraGrid1.Selected.Rows.Clear();
Its not the row that is selected., it is the groupby row summary that is selected.
viswanth said:Its not the row that is selected., it is the groupby row summary that is selected.
I think you are getting mixed up in the terminology here. You cannot select a Summary. The summaries you are talking about are probably inside the GroupByRow. The GroupByRow is the row that acts as a sort've parent row to the rows of data in that group.
I meant the summary display area, that is getting highlighted. I think the image that is attached is clear.
Is there a way to deselect it? It sounds similar to the SyncWithCurrency manager for the grid which doesn't select any row when the grid loads.
The selected (highlighted) area in the screen shot here is a GroupByRow. The summary text is in the GroupByRow. To unselected it, you will need to call grid.Selected.Row.Clear.
There's no way to stop the grid from selecting the first row when you group it. You should probably Submit a feature request to Infragistics.