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