Hi,
I have taken a Radgrid, in which in one column cell, I have 2 controls. I want to remove margin between table border and control.
In RadGrid, I have applied following properties.
<telerik:RadGrid . . . . .
CellSpacing="0" cellpadding="0" . . . . . >
Code:
<ItemTemplate> <table border="1" cellpadding="0" cellspacing="0" width="100%"> <tr> <td style="border: 1;"> <asp:TextBox ID="txtTest" runat="server" TextMode="multiline" Width="100%" Rows="2" Text='<%#DataBinder.Eval(Container.DataItem, "Test")%>'> </asp:TextBox> </td> </tr> <tr> <td style="border: 1;" align="right"> <asp:ImageButton class="clsbuttonsize" ID="btnDotsTest" runat="server" ImageUrl="~/Images/btn_Test.gif" ToolTip="Click to view and update the Test." /> </td> </tr> </table> <asp:HiddenField ID="hdnTest" runat="server" Value='<%#DataBinder.Eval(Container.DataItem, "Test")%>' /> </ItemTemplate> Still I am not able remove margin between border and control.
I have attached the screenshot.
