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

Disable Highlight Row

2 Answers 282 Views
Grid
This is a migrated thread and some comments may be shown as answers.
SoniTek
Top achievements
Rank 1
SoniTek asked on 05 Oct 2012, 04:17 AM

How to disable highlight on row select when

ClientSettings Selecting-AllowRowSelect="true">

2 Answers, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 05 Oct 2012, 05:31 AM
Hi,

Please try the following CSS.

CSS:
<style type="text/css">
    div.RadGrid .rgSelectedRow
    {
         background: None;
         color:Black !important;
   
    }
    div.RadGrid .rgAltRow
    {
       background: #F2F2F2;
        color:Black !important;
     
    }
    .RadGrid_Default .rgSelectedRow td, .RadGrid_Default .rgSelectedRow td.rgSorted
    {
         border-bottom-color:White !important;
    }
</style>

Thanks,
Shinu.
0
SoniTek
Top achievements
Rank 1
answered on 06 Oct 2012, 03:23 AM
Thank you Shinu.

Works perfectly.
Tags
Grid
Asked by
SoniTek
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
SoniTek
Top achievements
Rank 1
Share this question
or