Hi folks,
I use a radtabstrip to load usercontrols on demand pretty much like the example at TabStrip / Load on Demand RadPageView. On my usercontrol I have javascript code in a radcodeblock, but this code is not loaded into the page if I use ajax.
In my testpage I have a function showing a normal javascript alert, which is called from an asp button. If i include the code below (to retrive the usercontrol via ajax), the button doesn't work, bot do I remove the ajax updater, and by this update the full site by loading an usercontrol there is no problems.
What should I do?
I use a radtabstrip to load usercontrols on demand pretty much like the example at TabStrip / Load on Demand RadPageView. On my usercontrol I have javascript code in a radcodeblock, but this code is not loaded into the page if I use ajax.
In my testpage I have a function showing a normal javascript alert, which is called from an asp button. If i include the code below (to retrive the usercontrol via ajax), the button doesn't work, bot do I remove the ajax updater, and by this update the full site by loading an usercontrol there is no problems.
<telerik:AjaxSetting AjaxControlID="RadTabStrip1"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="RadTabStrip1" /> |
<telerik:AjaxUpdatedControl ControlID="RadMultiPage1" LoadingPanelID="LoadingPanUnderRadWin" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
<telerik:AjaxSetting AjaxControlID="RadMultiPage1"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="RadMultiPage1" LoadingPanelID="LoadingPanUnderRadWin" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
What should I do?