Hello,
I have a RadAjaxPanel, which contains a RadGrid, Timer, and RadAjaxLoadingPanel. The Ajax in the grid works correctly (expanding, sorting and such). When doing these items, the RadAjaxLoadingPanel graphic displays as it should.
The timer is working properly in updating the panel. However, when this timer update occurs, I do not get the RadAjaxLoadingPanel graphic in my grid, like I want.
Perhaps I am using the AjaxManager incorrectly? I have:
When I try to put the actual panel in there as well as the grid (or without the grid) like this:
I have a different issue. The loading graphic shows up at the timer event, but it doesn't go away.
I think I'm missing something simple here. Any help is appreciated.
Thanks,
Stephen
I have a RadAjaxPanel, which contains a RadGrid, Timer, and RadAjaxLoadingPanel. The Ajax in the grid works correctly (expanding, sorting and such). When doing these items, the RadAjaxLoadingPanel graphic displays as it should.
The timer is working properly in updating the panel. However, when this timer update occurs, I do not get the RadAjaxLoadingPanel graphic in my grid, like I want.
Perhaps I am using the AjaxManager incorrectly? I have:
| <telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="eventsGrid"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="eventsGrid" LoadingPanelID="RadAjaxLoadingPanel1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManagerProxy> |
When I try to put the actual panel in there as well as the grid (or without the grid) like this:
| <telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="eventsGrid"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="eventsGrid" LoadingPanelID="RadAjaxLoadingPanel1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="eventAjaxPanel"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="eventAjaxPanel" LoadingPanelID="RadAjaxLoadingPanel1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManagerProxy> |
I have a different issue. The loading graphic shows up at the timer event, but it doesn't go away.
I think I'm missing something simple here. Any help is appreciated.
Thanks,
Stephen