Hi,
When rendering a button inside a table that is in a raddock I get extra height applied to the button with the net reult in the button redering wrongly. I've stripped back to bare minimum , I've attached a copy of the generated page - problem in both IE and Chrome. Take away the table and the button renders fine . Buttons outside the dock render fine. This occurs on the default skin and the black skin, I haven't checked any others...
Any ideas?
Regards
Jon
Code for it is:
When rendering a button inside a table that is in a raddock I get extra height applied to the button with the net reult in the button redering wrongly. I've stripped back to bare minimum , I've attached a copy of the generated page - problem in both IE and Chrome. Take away the table and the button renders fine . Buttons outside the dock render fine. This occurs on the default skin and the black skin, I haven't checked any others...
Any ideas?
Regards
Jon
Code for it is:
<html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"> <title></title></head><body > <form id="form1" runat="server"> <telerik:RadScriptManager ID="uxRadScriptManager" runat="server"></telerik:RadScriptManager> <telerik:RadStyleSheetManager ID="uxRadStyleSheetManager" Runat="server"></telerik:RadStyleSheetManager> <telerik:RadButton ID="RadButton2" runat="server" Text="This button is OK" ></telerik:RadButton> <br/> <br/> <telerik:RadDockZone runat="server" ID="RadDockZone2" > <telerik:RadDock ID="uxLogonPanel" runat="server" Title="Logon" style="overflow:hidden;" EnableAnimation="false" AutoPostBack="false" Resizable="false" DefaultCommands="None" EnableDrag="False" Index="-1" Pinned="True" Tag="" Width="296" > <ContentTemplate> <telerik:RadButton ID="RadButton1" runat="server" Text="Inside dock" ></telerik:RadButton> <table id="uxLogonTable" Runat="server"> <tr> <td > <telerik:RadButton ID="uxLogonButton" runat="server" Text="Inside table in dock" ></telerik:RadButton> </td> </tr> </table> </ContentTemplate> </telerik:RadDock> </telerik:RadDockZone> </form></body></html>