I have a radajaxpanel and a radscriptmanager in the master page. So all my content pages inherits them.
After each callback all the contentplaceholder elements from each of the content pages are included in the callback refresh. Is it possible to have an nested radajaxpanel in the content page, so in some cases refresh just some controls inside the contentplaceholder instead of the whole content page?
<body id="bodymaster" runat="server" style="background-image:url(../../img/titlebg.jpg); background-attachment:fixed"> |
<form id="frm01" runat="server"> |
<telerik:RadScriptManager ID="RadScriptManager1" runat="server" EnablePageMethods="true"> |
<Scripts> |
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" /> |
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" /> |
</Scripts> |
</telerik:RadScriptManager> |
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" /> |
<telerik:RadAjaxPanel ID="radAjaxPanel01" runat="server" LoadingPanelID="RadAjaxLoadingPanel1" ClientEvents-OnRequestStart="onRequestStart"> |
<div style="width: 100%; height:20px;top:0px; left:auto;" class="div03"> |
<table class="tbl12"> |
<tr> |
<td width="50%" style="text-align:left"> |
<asp:Label ID="lblMessage" runat="server" CssClass="txt08r" Visible="false" EnableViewState="false" /> |
</td> |
<td width="50%" style="text-align:right"> |
<asp:Label ID="lblApp" runat="server" style="color:#FFFFFF" /> |
<asp:Image ID="imgApp" runat="server" ImageUrl="~/img/spacer.gif"/>  <asp:Label ID="lblAppTitle" runat="server" CssClass="txt09s" /> |
</td> |
</tr> |
</table> |
</div> |
<div id="pnlContentMain01_01" name="pnlContentMain01_01" style="PADDING-RIGHT: 0px;PADDING-LEFT: 0px;PADDING-BOTTOM: 0px;OVERFLOW: auto;WIDTH: 100%;PADDING-TOP: 0px;moz-box-sizing: border-box;box-sizing: border-box"> |
<asp:contentplaceholder id="mpContentMain01_01" runat="server" /> |
</div> |
</telerik:RadAjaxPanel> |
</form> |
</body> |
</html> |
After each callback all the contentplaceholder elements from each of the content pages are included in the callback refresh. Is it possible to have an nested radajaxpanel in the content page, so in some cases refresh just some controls inside the contentplaceholder instead of the whole content page?