ComponentOne Wijmo Open for Juice UI
Wijmo Open for Juice UI Extender Controls / WijSplitter / WijSplitter Task-Based Help / Setting the Location of the Splitter
In This Topic
    Setting the Location of the Splitter
    In This Topic

    The WijSplitter control allows you to specify the location of the splitter, in pixels, from the left or top edge of the SplitContainer. Simply set the SplitterDistance property to take advantage of this feature.

    1. Create an ASP.NET Web application with a ScriptManager control and install Juice UI and the Wijmo Juice libraries to your project via NuGet.
    2. Add a standard Panel control to the main content of  your page.
    3. Add a second Panel control within the first panel, Panel1.
    4. Add markup within each panel so the final markup looks like this:
      <asp:Panel runat="server" ID="Panel1">        
      
          <h3>SplitterDistance = 200</h3>       
      
          <div id="splitter1">       
      
                 <div>panel1</div>
      
                 <div>panel2</div>
      
          </div>
      
      </asp:Panel>
      
      <div class="layout" style="width: 100px;">
      
               &nbsp;</div>
      
      <asp:Panel ID="Panel2" runat="server">
      
          <h3>SplitterDistance = 100</h3>
      
          <div id="splitter2">
      
                 <div>panel1</div>
      
                 <div>panel2</div>
      
          </div>
      
      </asp:Panel>
      
    5. While still in Source view, use the following markup to add a WijSplitter control to the page and set the TargetControlID to Panel1.        
      <cc1:WijSplitter ID="Panel1_WijSplitter" runat="server"
      
              TargetControlID="Panel1">
      
      </cc1:WijSplitter>
      
    6. Use the following markup to add a second WijSplitter control to the page and set the TargetControlID to Panel2.
      <cc1:WijSplitter ID="Panel2_WijSplitter" runat="server"        
      
              TargetControlID="Panel2">        
      
      </cc1:WijSplitter>
      
    7. Select View | Properties Window in the Visual Studio menu.
    8. Click the drop-down list at the top of the Properties window and select Panel1_WijSplitter.
      • Set the SplitterDistance property to 200.
    9. Click the drop-down list at the top of the Properties window and select Panel2_WijSplitter.
      • Set the Orientation property to Horizontal.
    10. Press F5 to run the application. The splitters will look similar to this: