I have a page layout using a table with 4 docking zones and a width of 100%. There is one row across the top that spans 3 columns and contains one zone, then there are 3 columns on the second row, each containing a zone. Whenever this code is executed with a minHeight value set, it shows up as a completely flat table with no height outside of the radDockZone borders. Any ideas as to why this is occurring?
| <telerik:raddocklayout runat="server" id="RadDockLayout1" onsavedocklayout="DockLayout_SaveDockLayout" onloaddocklayout="DockLayout_LoadDockLayout"> |
| <table id="WebPartLayoutTable" cellpadding="0" cellspacing="0"> |
| <tr> |
| <td colspan="3"> |
| <telerik:RadDockZone ID="Zone1" runat="server" MinHeight="250px" Width="100%" /> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <telerik:RadDockZone ID="Zone2" runat="server" MinHeight="250px" Width="100%" /> |
| </td> |
| <td> |
| <telerik:RadDockZone ID="Zone3" runat="server" MinHeight="250px" Width="100%" /> |
| </td> |
| <td> |
| <telerik:RadDockZone ID="Zone4" runat="server" MinHeight="250px" Width="100%" /> |
| </td> |
| </tr> |
| </table> |
| <div style="display:none"> |
| Hidden UpdatePanel, which is used to receive the new dock controls. |
| We will move them with script to the desired initial dock zone. |
| <asp:updatepanel runat="server" id="UpdatePanel1"> |
| <triggers> |
| <asp:asyncpostbacktrigger controlid="ButtonAddDock" eventname="Click" /> |
| </triggers> |
| </asp:updatepanel> |
| </div> |
| </telerik:raddocklayout> |