Displaying 1 result from an estimated 1 matches for "rabati".
Did you mean:
  rabani
  
2006 May 16
1
Ajax.Responders and onComplete
Hi all. I''m writing some kind of filter that i want passby my all AJAX request, and I stuck. I create object and pass him to Ajax Responders
like this:
var myGlobalHandlers = {
    
    onCreate: function(){
        Element.show(''loading'');
    },
    onComplete: function(request) { 
        alert(request.responseText);
    }
};