In this linked example there is a dijit layout of contentpanes.
Is there a way to maximize the center pane to cover the whole layout.
I have tried using the following after giving the center panel and id id="center"
dijit.ById("center").domNode.style.width='100%'
//and
dijit.ById("center").resize({w:1000,h:1000});
To resize the center layout,knowing that you had set an id for this last , (
id="center") , you can usedojo/dom-styleto set the a new widht and height for the pane layout,in the bellow snippet I'managed to calculate parent width and height then apply the style to the center pane , also a preobleme here is when you resize the window all pane should get initial style , si all you have to do is excute resizing every window resize event ..
you can see the explained example bellow :