我正在使用FullCalendar(http://fullcalendar.io/)插件与AngularJs我需要显示加载器时,数据加载到日历。我正在使用加载触发器来显示加载器
$scope.uiConfig = {loading: $scope.loading}
$scope.loading = function( isLoading, view ) {
if(isLoading) {// isLoading gives boolean value
$('#loading').show();
} else {
$('#loading').hide();
}
}
解释其工作原理
1条答案
按热度按时间vybvopom1#
fullcalendar的
loading
回调在事件获取开始/停止时触发。function( isLoading, view ){} //isLoading is true when events fetching //is started else false when done
个JS代码:
Working demo @ JSFiddle
参考文献:
loading:
callback