| Issue 1753: | Stepping from 2013-03 to 2013-04 in monthview from a GMT-1 country causes wrong start date | |
| 1 person starred this issue and may be notified of changes. | Back to list |
events: function (start, end, callback) {
$.ajax({
url: "@Url.Action("events", "calendarhandleronserver")",
type: 'POST',
dataType: 'json',
data: {
start: start.getTime(),
end: end.getTime()
},
currentTimezone: "Europe/Budapest",
ignoreTimeZone: false,
success: function (doc) {
-send to callback and so on-
}
});
}
i want to recolor the background on weekend days.
"start" and "end" property filled by the calendar. when i get on server side by ajax, stepping from 2013-03 to 2013-04 i get "start" as "2013. 03. 31. 23:00" so in this way the first calendar day (which is 2013.04.01 and it shown as fc-day0 style) will shown as weekend day while in real it's monday.
Any suggestion?
Aug 24, 2013
Project Member
#1
adamrs...@gmail.com
Status:
Invalid
|
|
| ► Sign in to add a comment |