Hi!
I have a vertical splitter layout with a grid in in left and right panels.
Both grids are set to 100% width and height, so they fill the panels.
I want to expand the left or right panels based on a button click. I’ve used the following bit of code to expand the left panel:
$("#topSplitter").jqxSplitter({
panels: [{size: "100%"}]
});
This expands the panel, but the grid does not grow to fill the panel.
If I click on the splitter drag button to expand, then the right hand grid DOES grow to fill the panel.
What should I do to make the grid grow to fill the panel after expanding?