Hi,
I am trying to achieve the functionality shown in
http://demos.telerik.com/aspnet-ajax/tabstrip/examples/applicationscenarios/loadondemand/defaultcs.aspx
I am able to make my tab and multipage work as shown in the above example. I also want to have the export option for the grids which load from the usercontrol. Can you please suggest what can I do in this scenario. For Ajaxified grid, we have to cancel the AJAX as suggested in the examples I got from the following link:
http://www.telerik.com/community/code-library/aspnet-ajax/general/export-radgrid-content-to-excel-word-csv-pdf-with-ajax-enabled.aspx
How can I refer to the button control defined in the usercontrol page which starts the export process to cancel the AJAX for that process? AJAX Manager is ajaxifying the whole tab in this load on demand example, so can I refer to the button in usercontrol ?
Can you please suggest what can I do in this scenario?
Thanks.
I am trying to achieve the functionality shown in
http://demos.telerik.com/aspnet-ajax/tabstrip/examples/applicationscenarios/loadondemand/defaultcs.aspx
I am able to make my tab and multipage work as shown in the above example. I also want to have the export option for the grids which load from the usercontrol. Can you please suggest what can I do in this scenario. For Ajaxified grid, we have to cancel the AJAX as suggested in the examples I got from the following link:
http://www.telerik.com/community/code-library/aspnet-ajax/general/export-radgrid-content-to-excel-word-csv-pdf-with-ajax-enabled.aspx
How can I refer to the button control defined in the usercontrol page which starts the export process to cancel the AJAX for that process? AJAX Manager is ajaxifying the whole tab in this load on demand example, so can I refer to the button in usercontrol ?
<
telerik:RadAjaxManager runat="server" ID="RadAjaxManager1">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadTabStrip1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadTabStrip1" />
<telerik:AjaxUpdatedControl ControlID="RadMultiPage1" LoadingPanelID="LoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="RadMultiPage1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadMultiPage1" LoadingPanelID="LoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</
telerik:RadAjaxManager>
Can you please suggest what can I do in this scenario?
Thanks.