Hi,
I have a grid where I set footer template like this:
However, it looks like on web page for every table that I have defined inside the FooterTemple the border style is set outset or at least it looks like it is outset. Here is the image: http://img146.imageshack.us/i/grido.png/
I have a grid where I set footer template like this:
| <Columns> |
| <telerik:GridTemplateColumn UniqueName="SetDescription" DataField="SetDescription" |
| HeaderText="Criteria Type" ReadOnly="true"> |
| <ItemTemplate> |
| <asp:TextBox ID="txtCriteriaSet" runat="server" Text='<%# Eval("SetDescription") %>' /> |
| </ItemTemplate> |
| <FooterTemplate> |
| <table width="100%" cellspacing="0" cellpadding="0" border="0"> |
| <tr> |
| <td align="right"> |
| <table cellspacing="0" cellpadding="0" border="0"> |
| <tr> |
| <td> |
| <asp:Label ID="lblTotalLeft" runat="server" Text="Total Left:" /> |
| </td> |
| <td> |
| <asp:TextBox ID="txtTotalLeft" Text="0" runat="server" Width="80px" ReadOnly="true" /> |
| </td> |
| <td> |
| <asp:Label ID="lblTotalUsed" runat="server" Text="Total Used:" /> |
| </td> |
| <td> |
| <asp:TextBox ID="txtTotalUsed" Text="0" runat="server" Width="80px" ReadOnly="true"/> |
| </td> |
| </tr> |
| </table> |
| </td> |
| </tr> |
| </table> |
| </FooterTemplate> |
| </telerik:GridTemplateColumn> |
| </Columns> |
However, it looks like on web page for every table that I have defined inside the FooterTemple the border style is set outset or at least it looks like it is outset. Here is the image: http://img146.imageshack.us/i/grido.png/