如何在 Angular UI 日历上调整(延长开始或结束日期)事件的大小?
How to re-size (stretch start or end date) events on Angular UI Calendar?
我一直无法查明Angular UI 日历(http://angular-ui.github.io/ui-calendar/) 中是否存在以下选项。
http://fullcalendar.io/docs/event_ui/eventDurationEditable/
这是日历初始化代码
/* configuration */
$scope.uiConfig = {
calendar:{
height: 'auto',
editable: true,
header:{
left: 'today prev,next',
center: 'title',
right: 'month basicWeek basicDay'
},
eventDrop: $scope.onEventDrop,
eventResize: $scope.onEventResize
}
};
如果有人做过,请推荐我可以用来实现的属性
谢谢!
要在“月”视图中调整大小,您的活动不应包含时间部分。
例如,具有 属性 start: '2015-02-01'
的事件将有效,而 start: '2015-02-09T16:00:00'
则无效。 (但它会在周或日视图中)
我一直无法查明Angular UI 日历(http://angular-ui.github.io/ui-calendar/) 中是否存在以下选项。
http://fullcalendar.io/docs/event_ui/eventDurationEditable/
这是日历初始化代码
/* configuration */
$scope.uiConfig = {
calendar:{
height: 'auto',
editable: true,
header:{
left: 'today prev,next',
center: 'title',
right: 'month basicWeek basicDay'
},
eventDrop: $scope.onEventDrop,
eventResize: $scope.onEventResize
}
};
如果有人做过,请推荐我可以用来实现的属性
谢谢!
要在“月”视图中调整大小,您的活动不应包含时间部分。
例如,具有 属性 start: '2015-02-01'
的事件将有效,而 start: '2015-02-09T16:00:00'
则无效。 (但它会在周或日视图中)