Hi
We have a simple page which is displayed in a rad window containing a two column html table and a command button. The rad window is set to autosize.
When we add a Form Decorator to the page the window resizes incorrectly and adds scroll bars.
Is there something we have overlooked?
Below is a simple example of the two pages we have.
Default.aspx
Default2.aspx
Thanks in advance.
We have a simple page which is displayed in a rad window containing a two column html table and a command button. The rad window is set to autosize.
When we add a Form Decorator to the page the window resizes incorrectly and adds scroll bars.
Is there something we have overlooked?
Below is a simple example of the two pages we have.
Default.aspx
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <head runat="server"> |
| <title></title> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
| </telerik:RadScriptManager> |
| <telerik:RadWindow ID="RadWindow1" runat="server" NavigateUrl="Default2.aspx" AutoSize="true" VisibleOnPageLoad="true"> |
| </telerik:RadWindow> |
| </form> |
| </body> |
| </html> |
Default2.aspx
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <head runat="server"> |
| <title></title> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager> |
| <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" /> |
| <asp:Button ID="Button2" runat="server" Text="Button" /> |
| <table> |
| <tr> |
| <td><asp:Label ID="Label1" runat="server" Text="Label"></asp:Label></td> |
| <td><asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></td> |
| </tr> |
| <tr> |
| <td><asp:Label ID="Label2" runat="server" Text="Label"></asp:Label></td> |
| <td><asp:TextBox ID="TextBox2" runat="server"></asp:TextBox></td> |
| </tr> |
| <tr> |
| <td><asp:Label ID="Label3" runat="server" Text="Label"></asp:Label></td> |
| <td><asp:TextBox ID="TextBox3" runat="server"></asp:TextBox></td> |
| </tr> |
| </table> |
| </form> |
| </body> |
| </html> |
Thanks in advance.