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

Unnecssary underline on Grid Template Column on selection

2 Answers 69 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Effat
Top achievements
Rank 1
Effat asked on 14 Nov 2011, 07:25 AM
Hello All,

My grid has skin windows7 and the grid has a lot of template columns. On selection of a row, the highlighted row has underline below the template column data due to Border-Bottom-Style: solid; I want to remove this style so that the underline disappears on selection of a row.


I applied the following style on the form with the grid to override the style but it doesn't work.. Can you please help me?

 .RadGrid_Windows7 .rgRow td, .RadGrid_Windows7 .rgAltRow td, .RadGrid_Windows7 .rgEditRow td, .RadGrid_Windows7 .rgFooter td
        {
            border-bottom-style: none;
            border-bottom-width:0px;
        }

2 Answers, 1 is accepted

Sort by
0
Jayesh Goyani
Top achievements
Rank 2
answered on 14 Nov 2011, 07:40 AM
Hello Effat,

please check below code snippet.

.RadGrid_Windows7 .rgRow td, .RadGrid_Windows7 .rgAltRow td, .RadGrid_Windows7 .rgEditRow td, .RadGrid_Windows7 .rgFooter td
       {
           border-bottom-style: none !important;
           border-bottom-width: 0px !important;
       }


Thanks,
Jayesh Goyani
0
Effat
Top achievements
Rank 1
answered on 14 Nov 2011, 12:56 PM
Thank you Jayesh Goyani :) It works like a charm :)
Tags
Grid
Asked by
Effat
Top achievements
Rank 1
Answers by
Jayesh Goyani
Top achievements
Rank 2
Effat
Top achievements
Rank 1
Share this question
or