Hi,
I am using the RadWindow control to create new Tenants in a RadDropDownList, I just want a simple form that captures the info and Save.
Functionality wize its working 100% but it looks horrible and I cannot figure out why its happening, tried a few settings like Render Mode, Skin etc.
I have attached a screenshot of how it looks, renders the same in IE and Chrome.
Here the window code in my ASPX (wrapped in a RadUpdatePanel could this cause the issue?):
I am using the RadWindow control to create new Tenants in a RadDropDownList, I just want a simple form that captures the info and Save.
Functionality wize its working 100% but it looks horrible and I cannot figure out why its happening, tried a few settings like Render Mode, Skin etc.
I have attached a screenshot of how it looks, renders the same in IE and Chrome.
Here the window code in my ASPX (wrapped in a RadUpdatePanel could this cause the issue?):
<telerik:RadWindow runat="server" ID="winNewTenant" Width="500px" Height="200px" Modal="true" Behaviors="None" EnableTheming="True" Skin="WebBlue"> <ContentTemplate> <table> <tr> <td class="tdlabel"> Tenant Name </td> <td> <telerik:RadTextBox runat="server" ID="txtTenantName" Width="300px" /> </td> </tr> <tr> <td class="tdlabel"> Trading As </td> <td> <telerik:RadTextBox runat="server" ID="txtTradingAs" Width="300px" /> </td> </tr> <tr> <td colspan="2"> </td> </tr> <tr> <td colspan="2"> <telerik:RadButton runat="server" ID="btnSaveTenant" Text="Save" CausesValidation="true" ButtonType="SkinnedButton" Skin="WebBlue" OnClick="btnSaveTenant_Click" /> <telerik:RadButton runat="server" ID="btnCancelTenant" Text="Cancel" CausesValidation="false" ButtonType="SkinnedButton" Skin="WebBlue" OnClick="btnCancelTenant_Click" /> </td> </tr> </table> </ContentTemplate> </telerik:RadWindow>