I have a RadGrid that contains a template column like the following:
Everything looks fine but if I try want to select the row (and have it highlighted), the row will only be selected if I select any other part of the row except for the table that is created within the repeater.
Any suggestions?
Thanks
| <rad:GridTemplateColumn UniqueName="Name" SortExpression="Name"> |
| <ItemTemplate> |
| <asp:Repeater ID="rptClientName" runat="server" > |
| <HeaderTemplate> |
| <table> |
| </HeaderTemplate> |
| <ItemTemplate> |
| <tr> |
| <td><asp:Label ID="lblClientName" runat="server" /></td> |
| </tr> |
| </ItemTemplate> |
| <FooterTemplate> |
| </table> |
| </FooterTemplate> |
| </asp:Repeater> |
| </ItemTemplate> |
| </rad:GridTemplateColumn> |
Everything looks fine but if I try want to select the row (and have it highlighted), the row will only be selected if I select any other part of the row except for the table that is created within the repeater.
Any suggestions?
Thanks