jquery - Add loading indicator to fullcalendar -


i'm trying add loading spins like this fullcalendar, when i'm changing months in it. how can that?

fullcalendar v1: should make use of loading function triggered when event fetching starts/stops.

$('#calendar').fullcalendar({         loading: function( isloading, view ) {             if(isloading) {// isloading gives boolean value                 //show loader here              } else {                 //hide loader here             }         } }); 

fullcalendar v2: when scheduler plugin loaded, callback fired when resources fetched.


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -