I'm trying to get a 'loading' div for my ajaxified website. using JSF 2.0's f:ajax tag for adding ajax to the website and 'trying' to make the loadin div show using jQuery $(document).ajaxStart function.

The jQuery code part looks like this:

$(document).ajaxStart(function(){
    console.log("ajax start");
  $('#ajaxBusy').show(); 
}).ajaxStop(function(){
    console.log("ajax end");
  $('#ajaxBusy').hide();
});

The log functions are never called. Any Idea why? Do JSF ajax and javascript ajax not work together?

Thanks!

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

You should use jsf.ajax.addOnEvent(callback) to display a loading div. Maybe addOnError too.

See the documentation

jsf.ajax.addOnEvent(statusUpdate);
...
var statusUpdate = function statusUpdate(data) {
...
}

You will need to work with data.status

  • begin: before the request is sent
  • complete: request recieved
  • success: request succesfully processed (without errors)

Examples using this api:

link|improve this answer
feedback

The shorthand $ can be the problem if using jsf, component libraries and jquery.

Try to call jQuery this way:

jQuery(document).ajaxStart(function(){ ... });
link|improve this answer
Thanks. Tried it and doesn't work. – Ben May 29 '11 at 8:21
feedback

That's correct. Different JSF implementations may use different AJAX engines, and the jQuery ajaxStart/ajaxStop only apply to those components that route AJAX requests through the jQuery $.ajax function.

In contrast, if you're using Primefaces, the jQuery ajaxStart/ajaxStop events will fire and the jsf.ajax.onEvent will not fire.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.