The Spitter Fluid demo example sets the Splitter’s height and width to 100%
.
<div id="DIV1" style="width: 100%; height: 100%;">
<jqxSplitter #jqxSplitter [height]="'100%'" [width]="'100%'" [panels]="panels">
......
</jqxSplitter>
</div>
Since I want the Splitter to fill the entire web page: from top to bottom and from left to right, I am using the same settings as in this demo example:
[height]="'100%'" [width]="'100%'"
Unfortunately, even if I copy/paste the code from this example the Splitter disappears and the page renders blank.
I have tried Fluid Size Splitter live example posted as StackBlitz project.
Unfortunately, [height]="'100%'" [width]="'100%'"
setting do not work there as well.
How to make Splitter widget fill the entire 100% screen space?
