When I click on a cell, I do not want the entire row hightlighted. I just want the cell. How do I do that?
I have tried this ... (in the initializelayout function)
e.Layout.Bands[0].Override.SelectTypeRow =
SelectType.None;
e.Layout.Bands[0].Override.SelectTypeCell =
SelectType.Single;
and it still highlights the entire row
The row is probably not selected, it's just the active row so it appears the same as a selected row.
FAQ:How do I turn off the ActiveRowAppearance so that the active row in the grid does not appear selected.
Thanks everyone, unfortuanlly I still do not understand why the entire row is being highlighted. I went in and played with active row appearance and cell appearance and it still looks like the entire row is being selected.