According to http://www.telerik.com/help/aspnet-ajax/tab_radmultipagescrollbars.html
In next example the entire page is scrolled as a whole. How to make that only the content of page is scrolled? (like in picture. 3 from yours documentation)
In next example the entire page is scrolled as a whole. How to make that only the content of page is scrolled? (like in picture. 3 from yours documentation)
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm4.aspx.cs" Inherits="WebDesigner.WebForm4" %><%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <style type="text/css"> html, body, form { height: 100%; margin: 0; padding: 0; } </style> <title></title></head><body> <form id="form1" runat="server"> <telerik:RadScriptManager ID="ScriptManager" runat="server"> </telerik:RadScriptManager> <telerik:RadTabStrip ID="exceptionTabStrip" runat="server" SelectedIndex="0" MultiPageID="exceptionMultiPage"> <Tabs> <telerik:RadTab runat="server" Text="short" Selected="True"> </telerik:RadTab> <telerik:RadTab runat="server" Text="long"> </telerik:RadTab> </Tabs> </telerik:RadTabStrip> <telerik:RadMultiPage ID="exceptionMultiPage" runat="server" ScrollBars="Auto" SelectedIndex="0"> <telerik:RadPageView ID="ShortException" runat="server" Selected="True"> <div> ShortException </div> </telerik:RadPageView> <telerik:RadPageView ID="DetailedException" runat="server"> <div> DetailedException DetailedException DetailedException DetailedException <br /> DetailedException DetailedException DetailedException DetailedException <br /> DetailedException DetailedException DetailedException DetailedException <br /> DetailedException DetailedException DetailedException DetailedException <br /> DetailedException DetailedException DetailedException DetailedException <br /> DetailedException DetailedException DetailedException DetailedException <br /> DetailedException DetailedException DetailedException DetailedException <br /> DetailedException DetailedException DetailedException DetailedException <br /> DetailedException DetailedException DetailedException DetailedException <br /> DetailedException DetailedException DetailedException DetailedException <br /> DetailedException DetailedException DetailedException DetailedException <br /> DetailedException DetailedException DetailedException DetailedException <br /> DetailedException DetailedException DetailedException DetailedException <br /> DetailedException DetailedException DetailedException DetailedException <br /> </div> </telerik:RadPageView> </telerik:RadMultiPage> </form></body></html>