Hi All,
I do not want to apply radajaxloadingpanel for my grid, how can i do this.
my webform contains radajaxpanel in side this i have rad grid and some textboxes and button. for radajaxpanel i have given loadingoanel id, loading panel is working fine when i click on buttons, but loading panel is getting struck when i click export to excel command in grid.
so i donot want to apply radajaxloadingpanel for my grid, how can i do this.
Please help me regarding this.
4 Answers, 1 is accepted
0
Hello Pradeep,
I followed your scenario and prepared a simple working project which handles the desired functionality. Please give it a try and see if it works for you or if I am missing something out.
Best wishes,
Pavlina
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
I followed your scenario and prepared a simple working project which handles the desired functionality. Please give it a try and see if it works for you or if I am missing something out.
Best wishes,
Pavlina
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
pradeep k
Top achievements
Rank 1
answered on 18 Nov 2009, 11:02 AM
Thanks for the sample application. it will help me.
In my scenario radgrid and other asp.net controls are in radajaxpanel, like below...
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<ClientEvents OnRequestStart="onRequestStart" />
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadGrid1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadGrid1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Vista">
</telerik:RadAjaxLoadingPanel>
<telerik:RadAjaxPanel id="RadAjaxPanel1" runat="server"
EnableAJAX= "true" LoadingPanelID="RadAjaxLoadingPanel1">
-- Here comes asp.net text boxes and button
-- Here comes RadGrid (with exportcommands)
-- Here comes RadGrid (with exportcommands)
</telerik:RadAjaxPanel>
In this scenario i am facing issue.
0
Hi Pradeep,
Attached to this message is a modified project which is working properly when RadGrid is inside RadAjaxPanel.
Additionally, please have in mind that we highly recommend avoid working with the RadAjaxManager and RadAjaxPanel controls at the same time. Use the controls depending on your exact scenario as recommended here.
For more information review this help article:
http://www.telerik.com/help/aspnet-ajax/ajxcontrolsinajaxpanelandajaxsettings.html
Best wishes,
Pavlina
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Attached to this message is a modified project which is working properly when RadGrid is inside RadAjaxPanel.
Additionally, please have in mind that we highly recommend avoid working with the RadAjaxManager and RadAjaxPanel controls at the same time. Use the controls depending on your exact scenario as recommended here.
For more information review this help article:
http://www.telerik.com/help/aspnet-ajax/ajxcontrolsinajaxpanelandajaxsettings.html
Best wishes,
Pavlina
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
pradeep k
Top achievements
Rank 1
answered on 18 Nov 2009, 12:47 PM
Thank You.