php - fullCalendar ignoreTimezone doesn't seems to work -
i using full calendar , think m doing wrong. set property ignoretimezone:
"true", doesn't seems work, displays time according +5:30(local timezone), when set time (by converting in timezone using php), displays according +530
allday: false end: "thu, 18 jul 2013 17:00:00 +0100" id: 5 ignoretimezone: true start: "thu, 18 jul 2013 15:00:00 +0100" title: "test 2nd"
as here, time shows "15:00:00-17:00:00", in calendar displays somthing "19:30:00-21:30:00" i.e adding +5:30, instead set ignoretimezone true.
any idea
the option using available in version 1 of fullcalendar. check if using version 1 or 2. if not sure version, can check hitting $.fullcalendar in console , version using.
solution (if version 2):
as per version 2 of fullcalendar option ignoretimezone
deprecated stated here.
as ignoretimezone
event property, need set fullcalendar property as
timezone: false, //ignores time zone
other possible values can check here.
a working demo official website.
note : it's recommended check deprecated list of options if using newer fullcalendar version, few other options have been removed in newer version.
Comments
Post a Comment