I have this markup which executes:
and fails to fire the server method ramTicket_AjaxRequest. I've verified that the OnTicketClose function fires with Firebug.
A related point, the loading panel appears as it should, but never goes away.
What is preventing the request?
<telerik:RadAjaxManager ID="ramTicket" runat="server" OnAjaxRequest="ramTicket_AjaxRequest" DefaultLoadingPanelID="ralpPrivate"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="ramTicket"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="panTicketList" /> <telerik:AjaxUpdatedControl ControlID="panTicket" /> <telerik:AjaxUpdatedControl ControlID="panTotalTickets" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManager><telerik:RadCodeBlock runat="server"> <script type="text/javascript"> // The subscribed close function for the Ticket window function OnTicketClose(sender, args) { var ramTicket = $find('<%= ramTicket.ClientID %>'); ramTicket.ajaxRequest('Rebind: ' + args); } </script></telerik:RadCodeBlock>A related point, the loading panel appears as it should, but never goes away.
What is preventing the request?
