jQuery UI Widgets Forums Layouts Splitter Splitter Bar visibility

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 11 years, 2 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Splitter Bar visibility #2759

    DavidSimmons
    Participant

    Can I turn off the Splitter’s bar visibility, I was thinking of using it a page layout tool? Their maybe a better JQWidget to use…

    Splitter Bar visibility #2764

    Peter Stoev
    Keymaster

    Hi David,

    It is not possible to turn off the Splitter’s bar visibility. The splitter bar is used to resize the content panels which are actually DIV tags. That’s the widget’s purpose. You can achieve the same layout without a Splitter by just adding 2 DIV tags with float: left style inside a container DIV tag. Of course, you will have to set the width and height properties of the DIV tags, too.

    For example:

    <div id="Container" style="width: 400px; height: 400px;">
    <div id="left" style="float: left; background: #aaa; width: 200px; height: 100%;">Left Panel</div>
    <div id="right" style="float: left; background: #bbb; width: 200px; height: 100%;">Right Panel</div>
    </div>

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.