Hi,
anyone got a nice idea to create a dashboard page like shown in the attached screenshot. The problem there is that I created a row with 3 columns each of the got a width of 33% after that a row with two columns of 50% and a row with 100%. Each cell got a RadDockZone with a width of 100%.
How can i avoid the miss alignment on the right side. The current code looks like this:
001.<style type="text/css">002. .td33003. {004. width: 33%;005. height: 98%;006. vertical-align:top;007. }008. .td100009. {010. width: 100%;011. height: 98%;012. vertical-align:top;013. }014. .td50015. {016. width: 50%;017. height: 98%;018. vertical-align:top;019. }020. div#main021. {022. position: relative;023. height: 800px;024. width: 100%;025. background-color: #ccc;026. overflow-y: auto;027. border: 1px solid red;028. }029. </style>030. <telerik:RadDockLayout ID="RadDockLayout1" runat="server">031. <div id="main">032. <table style="table-layout: fixed; width: 100%;">033. <tr>034. <td class="td33">035. <telerik:RadDockZone ID="RadDockZone1" runat="server" Width="96%" MinHeight="50px"036. Height="95%">037. <telerik:RadDock ID="RadDock1" runat="server" Width="300px" Title="RadDock-Title">038. <ContentTemplate>039. <br />040. CONTENT041. <br />042. </ContentTemplate>043. </telerik:RadDock>044. </telerik:RadDockZone>045. </td>046. <td class="td33">047. <telerik:RadDockZone ID="RadDockZone2" runat="server" Width="96%" MinHeight="50px"048. Height="95%">049. <telerik:RadDock ID="RadDock2" runat="server" Width="300px" Title="RadDock-Title">050. <ContentTemplate>051. <br />052. CONTENT053. <br />054. </ContentTemplate>055. </telerik:RadDock>056. </telerik:RadDockZone>057. </td>058. <td class="td33">059. <telerik:RadDockZone ID="RadDockZone3" runat="server" Width="96%" MinHeight="50px"060. Height="95%">061. <telerik:RadDock ID="RadDock3" runat="server" Width="300px" Title="RadDock-Title">062. <ContentTemplate>063. <br />064. CONTENT065. <br />066. </ContentTemplate>067. </telerik:RadDock>068. </telerik:RadDockZone>069. </td>070. </tr>071. </table>072. 073. <table style="table-layout: fixed; width: 100%;">074. <tr>075. <td class="td50">076. <telerik:RadDockZone ID="RadDockZone5" runat="server" Width="96%" MinHeight="50px"077. Height="95%">078. <telerik:RadDock ID="RadDock5" runat="server" Width="300px" Title="RadDock-Title">079. <ContentTemplate>080. <br />081. CONTENT082. <br />083. </ContentTemplate>084. </telerik:RadDock>085. </telerik:RadDockZone>086. </td>087. <td class="td50">088. <telerik:RadDockZone ID="RadDockZone6" runat="server" Width="96%" MinHeight="50px"089. Height="95%">090. <telerik:RadDock ID="RadDock6" runat="server" Width="300px" Title="RadDock-Title">091. <ContentTemplate>092. <br />093. CONTENT094. <br />095. </ContentTemplate>096. </telerik:RadDock>097. </telerik:RadDockZone>098. </td>099. </tr>100. </table>101. 102. 103. <table style="table-layout: fixed; width: 100%;">104. <tr>105. <td class="td100">106. <telerik:RadDockZone ID="RadDockZone4" runat="server" Width="96%" MinHeight="50px"107. Height="95%">108. <telerik:RadDock ID="RadDock4" runat="server" Width="300px" Title="RadDock-Title">109. <ContentTemplate>110. <br />111. CONTENT112. <br />113. </ContentTemplate>114. </telerik:RadDock>115. </telerik:RadDockZone>116. </td>117. </tr>118. </table>119. </div>120. </telerik:RadDockLayout>