My Grid is NOT read only, so I can't set the CellClickAction to SelectRow. I set both the ActiveRow and SelectedRow's backgroup to Red, but only the clicked cell shows as Red. How do i set the whole row as Red background?
Thanks!
Amy
You can set the active row's background appearance by doing the following.
private void ultraGrid1_InitializeLayout(object sender, InitializeLayoutEventArgs e) { ultraGrid1.DisplayLayout.Override.ActiveRowAppearance.BackColor = Color.Salmon; }
Also, if you're using an ISL style file to make a sexier looking grid then you could edit that style file's common states for the grid in AppStylist so the active row highlights what ever color or background image you'd like.
The Solution is NOT working, it just change the cell background color, not the whole Row., since my grid is not read only and CellClickAction is NOT SelectRow.
Any othere suggestion?
Thanks in advance!