This is a migrated thread and some comments may be shown as answers.

[Solved] Can't turn off RowHoverStyle?

1 Answer 68 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Software
Top achievements
Rank 1
Software asked on 02 Jun 2008, 08:10 PM
I have a grid where I don't want the rows to highlight on hover.  I've set the ClientSettings-EnableRowHoverStyle to "false", but it still changes background color when I hover over each row.  I also set Selecting-AllowRowSelect to "false" - didn't work either.  Is there some other setting I'm not aware of that controls that?

Thanks!

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 03 Jun 2008, 05:43 AM
Hi Eddie,

Try setting the RowHoverStyle property to false in the code behind as shown below.

CS:
 protected void RadGrid1_PreRender(object sender, EventArgs e) 
    { 
        RadGrid1.ClientSettings.EnableRowHoverStyle = false
     
    } 

Thanks
Shinu.
Tags
Grid
Asked by
Software
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or