I have a template column that performs odd when selecting and hovering the row:
When hovering (and selecting), the column shows a solid bottom line (see pic1).
Moreover, the hover style only works for the other columns and on certain parts in the template column.
This is how the code in the template column looks like:
<telerik:GridTemplateColumn HeaderText="Document" UniqueName="TemplateColumn"
DataField="DocumentName" Aggregate="Count" FooterText="Number of documents found: "
SortExpression="DocumentName" ItemStyle-Wrap="false">
<ItemTemplate>
<table style="width:100%;">
<tr>
<td nowrap="nowrap">
<asp:Image ID="Image1" runat="server" AlternateText='<%# Eval("ClassName") %>'
ImageUrl='<%# Eval("TypeIconUrl") %>' ToolTip='<%# Eval("ClassName") %>' />
<asp:Image ID="Image2" runat="server" AlternateText='<%# Eval("StateText") %>'
ImageUrl='<%# Eval("StateIconUrl") %>' ToolTip='<%# Eval("StateText") %>' />
<asp:Label ID="Label1" runat="server" Text='<%# Eval("DocumentName") %>'></asp:Label>
</td>
</tr>
</table>
</ItemTemplate>
</telerik:GridTemplateColumn>
Any ideas how to solve this ?