我使用的是fullcalendar控件v1.6.4。有没有办法通过fullcalendar控制获得年度视图? 我试过这样的事情,但年份选项还没有到来。
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'year,month,agendaWeek,agendaDay'
},
由于
答案 0 :(得分:2)
您不能拥有年度视图,因为它不存在,您可以在Available views中看到。
但是,如果您希望允许用户在不点击每月的情况下移动到另一年,正如您在评论中建议的那样,您可以将表单附加到日期选择器,并获取用户选择的结果。
您可以使用jqueryUi datePicker,并使用onSelect event检测其更改时间。然后,您只需要更改fullCalendar的日期。
所以你可能有类似的东西:
$(".date").datepicker({
onSelect: function(dateText) {
var selectedDate = this.value;
$('#calendar').fullCalendar( 'gotoDate', selectedDate );
}
});