I'm having a problem with the RadSplitter, and I managed to reproduce it in a very simple example.
Here's the example:
The scrolling for that RadPane2 will not work because it contains a div with absolute positioning. The same thing happens if the div has its position set to relative instead of absolute. Because both relative and absolutely positioned divs exhibit the problem, I'm having a hard time laying out the content of my RadPane.
Any ideas on how to get around this?
Here's the example:
<telerik:RadSplitter ID="RadSplitter1" runat="server" Height="300px" Width="100%" Orientation="Horizontal">
<telerik:RadPane ID="RadPane1" runat="server" Height="50px" Width="">
Top Pane</telerik:RadPane>
<telerik:RadPane ID="RadPane2" runat="server">
<div style="position:absolute;">
Content that is too long and requires scrolling.
</div></telerik:RadPane>
</telerik:RadSplitter>
The scrolling for that RadPane2 will not work because it contains a div with absolute positioning. The same thing happens if the div has its position set to relative instead of absolute. Because both relative and absolutely positioned divs exhibit the problem, I'm having a hard time laying out the content of my RadPane.
Any ideas on how to get around this?