Hello, I'm using a custom advanced form (both insertion and edition)
And I'd like all of the events fired within the advanced form to only show a panel for the advanced form modal window.
So in my AdvancedForm.ascx I hate the following code :
<
telerik:RadAjaxManagerProxy
ID
=
"rAjaxMan_advForm"
runat
=
"server"
>
<
AjaxSettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"RadMultiPage1"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"RadMultiPage1"
LoadingPanelID
=
"rAjaxLPan_advForm"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
</
AjaxSettings
>
</
telerik:RadAjaxManagerProxy
>
<
telerik:RadAjaxLoadingPanel
ID
=
"rAjaxLPan_advForm"
runat
=
"server"
/>
Which is supposed to display the loading panel for the RadMultiPage1 in case an even is fired inside the RadMultiPage1
But this never happens. Also tried setting different "AjaxControl" and "AjaxUpdatedControl", but this does not seem to change anything
My AdvancedForm is based on Telerik's template and the RadMultiPage is the top element in the "<div class="rsAdvContentWrapper">" element (which is the div right after the title bar)
I also have an AjaxSettings for the Radscheduler events and he is "catching" those postbacks when I'm in the AdvancedForm. I want to override it
Thank you for taking your time to answer me !