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
392
My SplitterBar is invisible
posted

I have a vertical WebSplitter that I create like this:

    <ig:WebSplitter id="splitter" runat="server" Orientation="Vertical" BorderStyle="Inset" Height="580px" >
      <panes>
       
        <ig:SplitterPane runat="server" size="30%" ScrollBars="Hidden">
          <Template>
         
            <ignav:UltraWebTree ID="treeWorkflow" runat="server" height="100%" Indentation="20">
              <Margin Left="5px" />
              <NodePaddings Top="2px" />
            </ignav:UltraWebTree>
           
          </Template>
        </ig:SplitterPane>
       
        <ig:SplitterPane runat="server" size="70%" ScrollBars="Hidden">
          <Template>
            <iframe id="contentFrame" name="contentFrame" runat="server" height="100%" width="100%"></iframe>
          </Template>
        </ig:SplitterPane>
       
      </panes>
    </ig:WebSplitter>

 

It works fine except the SplitterBar is invisible.  It is there.  I can drag it and it works.  It just renders as really thin and white, like the frame's background.  There are no css called .bar*Css so nothing would be changing that.  There is nothing in my c# that changes it on the server either.  Any ideas?

 

 

Parents Reply Children
No Data