Hi
I have been using radcontrols in my application.
I'm using the raddcoks in my application.
I have two dockzones and adding 3 docks per each zone.
I have requirement where I need to set the zones height based on resolution(system) at clinetside through javascript.
I tried like Height="100%" but zones not considering the height with %.
Please help me as early as possible.
I have been using radcontrols in my application.
I'm using the raddcoks in my application.
I have two dockzones and adding 3 docks per each zone.
I have requirement where I need to set the zones height based on resolution(system) at clinetside through javascript.
I tried like Height="100%" but zones not considering the height with %.
<telerik:RadDockLayout runat="server" ID="RadDockLayout1" OnSaveDockLayout="RadDockLayout1_SaveDockLayout" EnableViewState="false"> <div id="mainContainer" style="width: 100%; float:left; height:100%"> <div style="width:100%;"> <asp:Table ID="Table1" runat="server" Width="100%"> <asp:TableRow> <asp:TableCell Width="50%" Height="95%"> <telerik:RadDockZone ID="RadDockZone1" runat="server" CssClass="zone" Height="540px" BorderColor="#d7d7d7"> </telerik:RadDockZone> </asp:TableCell> <asp:TableCell Width="50%" Height="95%"> <telerik:RadDockZone ID="RadDockZone2" runat="server" CssClass="zone" Height="540px" BorderColor="#d7d7d7"> </telerik:RadDockZone> </asp:TableCell> </asp:TableRow> </asp:Table> </div> </div> </telerik:RadDockLayout>