Hi
I have a grid which I need to select multiple rows and process the contents of each rows cells
I have tried looping through the rows in the grid and checking the grid.Rows(i).Activated = true
but this only returns the first Active row in the grid.
Is there another property which distinguishes selected rows from non selected rows ??
Is there a difference between active and selected rows
Thanks
Colm
Each row has a property named "Selected".
Active row is the row that has the input focus, hence there is only one active row. Selected row is a row that was selected by the user or by code and there could be more than one.
If you want to get all selected rows use grid.Selected.Rows
If you want to select all rows, don't go over them and set Selected = true because this can be very slow, but use grid.Selected.Rows.AddRange(grid.Rows)
wanted to get the rows that are selected and edit the cells only in grid but not entrie grid. Please help me. I am not able to get selected rows, its is displaying is 0
if
(BaseGrid.ActiveRow != null)
{
foreach(UltraGridRow row in BaseGrid.Rows)
if (row.Selected)
row.Activation =
Activation.AllowEdit;
}
Hello,
I am not sure why are you doing this, because I do not know your scenario but it should work. Could you please try to attach if possible a small sample project reproducing the above mentioned issue, I will be happy to take a look at it.