Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 450
Valix85 Avatar asked Dec 10 '22 20:12

Valix85


1 Answers

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

like image 162
smcd Avatar answered Dec 27 '22 23:12

smcd