I guess with the Splitter control you can't postions controls within aka: relative or absolute even with a DIV tag, the slider does nothing but ignore the controls and slides underneath. I was hoping I didn't have to use tables etc... Please advise if anyone has a good solutions.
Hi,
All html elements used by WebSplitter including ContentPane(SplitterPane) have flow layout. That means that if you want to position child controls with absolute positions, then you should wrap them into a div with relative position. Below is an example for template of SplitterPane:
<Template> <div style="position:relative;width:100%;height:100%;"> <span style="background:green;position:absolute;left:100px;top:100px;">Child with abs position</span> </div></Template>
Ok it tried it and the spliiter bar resizes the text and then as I keep sliding it eventually pops out and shows on the right pane anyway. I'll try some other things.
Thank you, I'll give it a try.