Hi All,
I am using 2 horizontal (3 panels) splitter.
panel size value is 300 for each splitter as follow:
$('#firstNested').jqxSplitter({ width: '100%', orientation: 'horizontal', panels: [{ size: '300', collapsible: false}] });
Is it possible to make size value auto? Because my each panel includes jqxdropdownbutton including jqxgrid. Height of jqxdropdownbutton is 25 px, when I open dropdownbutton, grid is displayed and becaomes 300 px. But when jqxdropsownbutton is closed 300-25 = 275 pixel becomes empty which is bad display.
I tried following (change 300 to auto) but it did not work:
$('#firstNested').jqxSplitter({ width: '100%', orientation: 'horizontal', panels: [{ size: 'auto', collapsible: false}] });