Hi,
I need to select more than one row(multiselect), now i can't, when i change a rows selected prop. to true, avaryone eles are changeing to false so I always have just one row selected.
for ex:
for(Int i =0; i<5;i++)
{
ugrd.Row[i].Selected = true;
}
i get only the last row selected.
do i have to set any property like "Alow Multiselect" or what
Best regards:
Salki
Try using grid.Selected.Rows.Add, instead of setting the Selected property on the row.
If that doesn't work, then your SelectTypeRow setting on the Overrides must not be allowing multiple selection.