Padmalochan
Padmalochan

Reputation: 1090

Selecting time ranges for creating an event not working in day and week view with jquery 1.8

Earlier i was using jquery 1.7.0 and every thing was working fine. But when i upgraded to jquery 1.8 Selecting time ranges for creating an event is not working in agendaWeek and agendaDay but works fine with month.

Here is my code :

$('#Calendar').fullCalendar({
    header: {
        left: 'prev,next today',
        center: 'title',
        right: 'month,agendaWeek,agendaDay'
    },
    firstHour: (new Date()).getHours(),
    minTime: 4,
    maxTime: 24,
    slotMinutes: 15,
    allDaySlot: false,
    defaultView: 'agendaWeek',
    eventSources: [
    // code for event source

    ],
    editable: false,
    selectable: true,
    selectHelper: true,
    ignoreTimezone: true,
    loading: function (isLoading) {
        //code for image loading
           .............
    },
    select:function (start, end, allDay) {
           //Code on Select   
           ................     
                },
    eventClick: function (calEvent, jsEvent, view) {
        //Code on event clicked
             .......................
        });
    },
    eventRender: function (event, element) {
       // Code on event Rendered
            .................
        });
    }
});

When i am using jquery 1.7 Selecting time ranges for creating an event in day and week works perfectly as shown in fig below. enter image description here

However Selecting time ranges for creating an event stops working when i upgrade to jquery1.8.

enter image description here

Thanks in Advance

Upvotes: 3

Views: 1093

Answers (1)

Padmalochan
Padmalochan

Reputation: 1090

The correct answer is given by Regin Larsen in the comments. Need to upgrade fullcalendar to version 1.5.4 and jquery ui to 1.8.23.

Upvotes: 3

Related Questions