is it possible to hide the spliter bar if the pane is locked, not allowed to collapse and resize?
Hi Bhadresh,
It can hide the spliter bar with your css style, but a white space area remains on the page, is it possible to remove this too?
Thank you!
Hello eable;
It is possible to set hidden property of splitterbar in CSS class based on the splitter pane as shown below:
Code that sets CSS class for SplitterBar:
foreach (SplitterPane pan in this.WebSplitter1.Panes){if (pan.Locked == true){this.WebSplitter1.SplitterBar.CssClass = "hide";}}
Styles on the page:
<style type="text/css">
.hide{visibility:hidden;}
</style>
Hope this helps.