I 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;
}
}
}