AngularUI Calendar和Arshaw FullCalendar#fullcalendar如何將每週時間(0:00-24:00)更改爲(9:00 - 18:00)?
我正在使用此ui日曆。 每週的時間顯示24小時,我怎樣才能改變時間只顯示上午09:00 - 下午06:00?
謝謝。
AngularUI Calendar和Arshaw FullCalendar#fullcalendar如何將每週時間(0:00-24:00)更改爲(9:00 - 18:00)?
我正在使用此ui日曆。 每週的時間顯示24小時,我怎樣才能改變時間只顯示上午09:00 - 下午06:00?
謝謝。
您將需要更新(從http://angular-ui.github.io/ui-calendar/)您uiconfig,包括minTime和MAXTIME在uiconfig:
/* config object */
$scope.uiConfig = {
calendar:{
height: 450,
editable: true,
header:{
left: 'title',
center: '',
right: 'today prev,next'
},
eventClick: $scope.alertOnEventClick,
eventDrop: $scope.alertOnDrop,
eventResize: $scope.alertOnResize,
minTime: '09:00:00', // Added mintime
maxTime: '18:00:00' // Added maxtime
}
};
http://stackoverflow.com/questions/24791219/fullcalendar-event-error-repeat-1-click-11-times請幫助我另一個問題,謝謝。 –
@MarCrazyness這不適合我,它是特定版本還是其他什麼。 –
@DipeshParmar你可以與我分享一個jsfiddle,你使用的是哪個版本的fullcalendar? – MarCrazyness
您正在使用什麼版本fullcalendar的? – MarCrazyness