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 - How can I echo out this array? -

javascript - IE11 incompatibility with jQuery's 'readonly'? -