Welcome to JiKe DevOps Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

jquery - FullCalendar show only weekDays

Hello guys I'm trying to show a week timetable, I must show only the name of the date, without date. Such as time table in agenda view. User must be able to select a range in day of the week. For example John Doe Monday from 15:00 to 18:00, Martin Friday from 9:00 to 15:00, and so...

I just try to create my personal view as "settimana" like this:

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

How can I do it? What I must set in option when calling jQuery fullCalendar plugin?

Thank you very much.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

Please log in or register to answer this question.

1 Answer

0 votes
by (71.8m points)

This shows only Monday - Friday 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',
});

See Info for display options and text/time customization


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to JiKe DevOps Community for programmer and developer-Open, Learning and Share
...