Control Splitter size inside HTML containers
Q:
When placing into HTML container (div, table) the Splitter control is very small.
A:
We recommend placing the Splitter component directly inside the "body" or "form" HTML element. <body> <obspl:Splitter ...
If you need to place it inside "div" element, or another html element, you just need to set specific size for the "div":
Fixed size <div style="width:500px;height:400px"> <obspl:Splitter ... Dynamic size <div style="width:70%;height:70%"> <obspl:Splitter ...
|