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
40
Re: Prevented Selected Row Appearance from overriding Cell Appearance
posted

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

Parents
No Data
Reply
  • 469350
    Offline posted

    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.

Children
No Data