Harish, Thank you for your reply and attention to my problem. I did find a workaround that isn't pretty, but it is a temporary fix. Where I have my vertical pane, i created two horizontal panes instead. I made my top pane a fixed size of 0px and set the splitterbarsize between them 0px in size also. It puts a very annoying blank area of about 5px above the second pane, but it helps achieve what I was looking to do until you get a fix in place. I also had to add the following events and javascript code to my page so it would refresh on resize, otherwise it shows blank data in the content areas...
<ClientEvents>
<Load EventHandler="ResetSplitter" />
<ResizeEnd EventHandler="ResetSplitter" />
</ClientEvents>
<script type="text/javascript">
function ResetSplitter(sender, e) {
<%=MySplitter.ClientID %>.adjustSize(true);
}
</script>
I hope this helps someone else. Now I'm running into another problem with having a splitter in the content area of a page that uses a masterpage, which I've logged another ticket for. The collapse/expand bars don't show. This can be easily replicated as well. Please see my post...
Collapse and Expand features don't work (and icon doesn't show) when in a masterpage
Thanks for all of your help!