I have a page with a RadAjaxManager on it that I was using to make various ajax calls and it is working perfectly well. Then I needed to ajaxify another call. So I removed a button's onclick attribute and added a OnClientCilck that invoked a javascript function:
function
execute() {
var
ram = $find(
"<%= ramFilter.ClientID %>"
);
ram.ajaxRequest(
"execute"
);
}
This doesn't work; the ajaxRequest event is never fired in my code behind.
However, if I open up firebug and set a breakpoint on the ajaxRequest line and step over the function call, the event handler is hit. If, on the other hand, I just hit continue in firebug, the event handler is not invoked.
Any ideas?