FullCalendar 仅显示 weekDays

FullCalendar show only weekDays

大家好,我想显示一个星期的时间table,我必须只显示日期名称,不能显示日期。例如议程视图中的时间 table。 用户必须能够 select 星期几的范围。 例如,John Doe Monday 从 15:00 到 18:00,Martin Friday 从 9:00 到 15:00,等等...

我只是想像这样 "settimana" 创建我的个人观点:

$('#calendar').fullCalendar({
   header: {
       left:'',
       center:'',
       right:'',
    }, 
    editable: true,
    views: {
        settimana:{
            type:'agendaWeek',
            duration: { days: 7 },
            title: 'Apertura',
        }
    },
    defaultView: 'settimana',
});

我该怎么做?调用 jQuery fullCalendar 插件时必须在选项中设置什么?

非常感谢。

这只显示星期一至星期五 http://jsfiddle.net/w11xw5gt/1/

$('#calendar').fullCalendar({
    header: {
        left: '',
        center: '',
        right: '',
    },
    editable: true,
    views: {
        settimana: {
            type: 'agendaWeek',
            duration: {
                days: 7
            },
            title: 'Apertura',
            columnFormat: 'dddd', // Format the day to only show like 'Monday'
            hiddenDays: [0, 6] // Hide Sunday and Saturday?
        }
    },
    defaultView: 'settimana',
});

Info for display options and text/time customization