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

Style for selected row .RadTreeList_Office2010Silver .rtlRSel

4 Answers 87 Views
TreeList
This is a migrated thread and some comments may be shown as answers.
Sonia
Top achievements
Rank 1
Sonia asked on 15 Apr 2013, 07:12 AM
Hi,

I am using the skin Office2010Silver but i have a problem when selecting a row in the treelist. The background changes when the row is selected but it does not took up all the row.
It is like it was prepaired for rows of a specified height but my rows are a bit higher.

How can i solve it? Thank you.

4 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 15 Apr 2013, 09:55 AM
Hi,

I suppose you want to change background color on selecting the row. Try the following CSS.
CSS:
.RadTreeList_Office2010Silver .rtlRSel td
{
  background-color: Red !important;
}

Thanks,
Shinu
0
Sonia
Top achievements
Rank 1
answered on 15 Apr 2013, 11:27 AM
This could be a solution for Chrome or Firefox, but this solution does not work properly in IE. The background image appears on top of the background color.
0
james
Top achievements
Rank 1
answered on 06 Jan 2015, 10:04 PM
How can I remove the color completely and just keep the default color on row selection? Basically I want to use the select column to select columns like a checkbox without having to enter edit mode and without changing the row color. I just want the checkbox to designate row selection.
0
Pavlina
Telerik team
answered on 09 Jan 2015, 04:46 PM
Hello,

In case you want to remove selected row color you can try the code snippet below:

div .RadTreeList_Office2010Silver .rtlRSel
{
    background-image: none;
}
 
div .RadTreeList_Office2010Silver .rtlRSel td
{
    border-color: #d0d7e5;
}


Regards,
Pavlina
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
TreeList
Asked by
Sonia
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Sonia
Top achievements
Rank 1
james
Top achievements
Rank 1
Pavlina
Telerik team
Share this question
or