Hi,
I there a way I can remove a complete panel from the splitter, without rebuilding the page? ex:
and then I would like to do:
And end with just 2 panes in my splitter.
Is it somehow possible?
I there a way I can remove a complete panel from the splitter, without rebuilding the page? ex:
<div id="container"> <div id="top"></div> <div id="middle"></div> <div id="bottom"></div></div><a id="remove">remove bottom panel</a>and then I would like to do:
$(document).ready(function(){ $('#container').kendoSplitter({ orientation: 'vertical', panes: [{},{},{}] }); $('a#remove').click(function(e){ e.preventDefault(); $('#container').data('kendoSplitter').removePanel('#bottom'); });});Is it somehow possible?