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

Skin issue

1 Answer 46 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Tina
Top achievements
Rank 1
Tina asked on 16 Nov 2011, 02:38 AM
i have a radgrid with skin black.When user selects the row I want to change the color of the text.How is that possible?

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 16 Nov 2011, 04:28 AM
Hello Tina,

Try setting SelectedItemStyle CSS class as shown below.
aspx:
<telerik:RadGrid ID="RadGrid1"  Skin="Black" runat="server" DataSourceID="SqlDataSource1" AutoGenerateEditColumn="true">
 <SelectedItemStyle CssClass="Selected"/>
  . . .
</telerik:RadGrid>
CSS:
<style type="text/css">
 .Selected
 {
 color:Red !important;
 }
</style>

-Shinu.
Tags
General Discussions
Asked by
Tina
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or