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
Post a Comment