<telerik:RadScriptManager ID="ScriptManager1" runat="server" EnableTheming="True"> |
</telerik:RadScriptManager> |
<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" Skin="Telerik" /> |
<div id="ParentDivElement" style="height: 100%;"> |
<telerik:RadSplitter ID="MainSplitter" runat="server" Height="100%" Width="100%" |
Orientation="Horizontal" Skin="Outlook"> |
<telerik:RadPane ID="TopPane" runat="server" Height="100" MinHeight="85" MaxHeight="150" |
Scrolling="none"> |
<!-- Place the content of the pane here --> |
Test1 |
</telerik:RadPane> |
<telerik:RadPane ID="MainPane" runat="server" Scrolling="none" MinWidth="500"> |
<telerik:RadSplitter ID="NestedSplitter" runat="server" Skin="Outlook" LiveResize="true"> |
<telerik:RadPane ID="LeftPane" runat="server" MinWidth="150" Height="" Index="0" |
Scrolling="None"> |
<!-- Place the content of the pane here --> |
<iframe id="contentFrame" height="100%" width="100%" frameborder="0"; src="ResultsGrid.aspx"></iframe> |
</telerik:RadPane> |
<telerik:RadSplitBar ID="VerticalSplitBar" runat="server" CollapseMode="Backward" /> |
<telerik:RadPane ID="RadPane1" runat="server" MinWidth="300" Width="300px"> |
<!-- Place the content of the pane here --> |
<div id="rightcontent"> |
<telerik:RadTabStrip ID="RadTabStrip1" runat="server" MultiPageID="RadMultiPage1" |
SelectedIndex="0" Skin="Web20"> |
<Tabs> |
<telerik:RadTab runat="server" Text="Tab1"> |
</telerik:RadTab> |
<telerik:RadTab runat="server" Text="Tab2"> |
</telerik:RadTab> |
</Tabs> |
</telerik:RadTabStrip> |
<telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0"> |
<telerik:RadPageView ID="RadPageView1" runat="server"> |
<uc8:UserControl1 ID="UserControl1_1" runat="server" /> |
</telerik:RadPageView> |
<telerik:RadPageView ID="RadPageView2" runat="server"> |
<uc6:UserControl2 ID="UserControl2_1" runat="server" /> |
</telerik:RadPageView> |
</telerik:RadMultiPage> |
</div> |
</telerik:RadPane> |
</telerik:RadSplitter> |
</telerik:RadPane> |
</telerik:RadSplitter> |
</div> |
I am using the FormDecorator on a page with Multipage/PageViews. One of the PageViews contains a UserControl (added at design time) and in that user control is a button. The PageView scrolls and the buttons in the PageView are not scrolling (they are floating in a static position). If I remove the FormDecorator, the button behaves normally and scrolls with the rest of the content.
In the code above, the button is contained in UserControl2_1, but it doesn't matter, it behaves the same in either user control.
Any ideas?