I have some html that I have applied the splitter to.
My class left-nav has a set width of 200px and my content class doesn't have a set width.
clear just removes the floating.
Can the splitter be applied just to left-nav?
I have tried
But it applies a panel to the .content div.
Any suggestions?
<div class="frame"><div class="left-nav"></div><div class="content"></div><div class="clear"></div></div>My class left-nav has a set width of 200px and my content class doesn't have a set width.
clear just removes the floating.
Can the splitter be applied just to left-nav?
I have tried
$(".frame").kendoSplitter({ panes: [ { collapsible: true,size:"200px",max:"200px"}, {},{} ] });But it applies a panel to the .content div.
Any suggestions?