Just a quick questions?
I am using the following grid for the user to select an article from a list.
Currently the "hovered" row is changing color based on the skin. What is the class name for the "Hovered" grid item so I can change the color and the cursor. If you could provide an example I would appreciate it.
<telerik:RadGrid ID="RadGrid1" runat="server" Skin="Web20" GridLines="None"
ShowHeader="False" AutoGenerateColumns="False"
onselectedindexchanged="RadGrid1_SelectedIndexChanged">
<ExportSettings>
<Pdf FontType="Subset" PaperSize="Letter" />
<Excel Format="Html" />
<Csv ColumnDelimiter="Comma" RowDelimiter="NewLine" />
</ExportSettings>
<MasterTableView DataKeyNames="monthyear">
<RowIndicatorColumn CurrentFilterFunction="NoFilter" FilterListOptions="VaryByDataType"
Visible="False">
<HeaderStyle Width="20px" />
</RowIndicatorColumn>
<ExpandCollapseColumn CurrentFilterFunction="NoFilter" FilterListOptions="VaryByDataType"
Resizable="False" Visible="False">
<HeaderStyle Width="20px" />
</ExpandCollapseColumn>
<Columns>
<telerik:GridTemplateColumn >
<ItemTemplate>
<asp:Label ID="LinkButton1" runat="server"
Text='<%# (DataBinder.Eval(Container.DataItem,"article1title")).ToString() %>'
Width="50" >
</asp:Label>
</ItemTemplate>
<ItemStyle HorizontalAlign="Center" Width=200 Height=75/>
</telerik:GridTemplateColumn>
</Columns>
<EditFormSettings>
<EditColumn CurrentFilterFunction="NoFilter" FilterListOptions="VaryByDataType">
</EditColumn>
</EditFormSettings>
</MasterTableView>
<ClientSettings EnablePostBackOnRowClick="True" EnableRowHoverStyle="True">
<Selecting AllowRowSelect="True" />
</ClientSettings>
</telerik:RadGrid>
I am using the following grid for the user to select an article from a list.
Currently the "hovered" row is changing color based on the skin. What is the class name for the "Hovered" grid item so I can change the color and the cursor. If you could provide an example I would appreciate it.
<telerik:RadGrid ID="RadGrid1" runat="server" Skin="Web20" GridLines="None"
ShowHeader="False" AutoGenerateColumns="False"
onselectedindexchanged="RadGrid1_SelectedIndexChanged">
<ExportSettings>
<Pdf FontType="Subset" PaperSize="Letter" />
<Excel Format="Html" />
<Csv ColumnDelimiter="Comma" RowDelimiter="NewLine" />
</ExportSettings>
<MasterTableView DataKeyNames="monthyear">
<RowIndicatorColumn CurrentFilterFunction="NoFilter" FilterListOptions="VaryByDataType"
Visible="False">
<HeaderStyle Width="20px" />
</RowIndicatorColumn>
<ExpandCollapseColumn CurrentFilterFunction="NoFilter" FilterListOptions="VaryByDataType"
Resizable="False" Visible="False">
<HeaderStyle Width="20px" />
</ExpandCollapseColumn>
<Columns>
<telerik:GridTemplateColumn >
<ItemTemplate>
<asp:Label ID="LinkButton1" runat="server"
Text='<%# (DataBinder.Eval(Container.DataItem,"article1title")).ToString() %>'
Width="50" >
</asp:Label>
</ItemTemplate>
<ItemStyle HorizontalAlign="Center" Width=200 Height=75/>
</telerik:GridTemplateColumn>
</Columns>
<EditFormSettings>
<EditColumn CurrentFilterFunction="NoFilter" FilterListOptions="VaryByDataType">
</EditColumn>
</EditFormSettings>
</MasterTableView>
<ClientSettings EnablePostBackOnRowClick="True" EnableRowHoverStyle="True">
<Selecting AllowRowSelect="True" />
</ClientSettings>
</telerik:RadGrid>