Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1140
WebSplitter not sizing properly inside an UpdatePanel
posted

The WebSplitter is not filling 100% height when dropped into an UpdatePanel from Safari and Chrome (works fine in IE and Firefox).   The UpdatePanel contains a Div panel set to 100% height/width and it is the parent of the WebSplitter.  Here is the markup:

 

 <ig:SplitterPane runat="server" Size="65%" ScrollBars="Hidden">
        <Template>
          <div class="AvrioModule100Percent">
            <asp:UpdatePanel ID="UpdatePanel1" runat="server" RenderMode="Inline">
              <ContentTemplate>
                <div class="AvrioModule100Percent">
                  <ig:WebSplitter ID="igSplitTree" runat="server" Orientation="Vertical" Width="100%"
                    Height="100%" DynamicResize="true" ResizeWithBrowser="True" Enabled="true" EnableAjaxViewState="true">
                    <Panes>
The stuff inside the splitter (i.e., the tree and associated grid, each in a separate pane
                    </Panes>
                  </ig:WebSplitter>
                </div>
              </ContentTemplate>
            </asp:UpdatePanel>
          </div>
        </Template>
      </ig:SplitterPane>

...

Any ideas as to what we need to do to get this to work properly in Chrome and Safari.