Hi,
I’m using a scheduler set up like this:
scheduler.config.prevent_cache = true;
scheduler.config.show_loading = true;
scheduler.setLoadMode(“month”);
scheduler.load("@Model.GetDataUrl", “json”);
I’m receiving a JSON array from the REST service, which looks like this (shortened):
[{
“id”: 3201,
“text”: “undefined”,
“start_date”: “2015-11-01 09:15”,
“end_date”: “2015-11-01 09:30”,
“userId”: “”,
“AgendaId”: 11,
“PracticeEventStatus”: 1,
“Practice”: null,
“tid”: 3201,
“ResourceId”: 11,
“Fullname”: null
},
{
“id”: 2147483645,
“text”: “”,
“start_date”: “2015-11-01 01:15”,
“end_date”: “2015-11-01 09:14”,
“userId”: “”,
“AgendaId”: 11,
“PracticeEventStatus”: 3,
“Practice”: null,
“tid”: 2147483645,
“ResourceId”: 11,
“Fullname”: null
},
…
It seems that the events with high numbers (such as the 2nd) are not taken into account. Is this by design, or am I missing something?
Thanks in advance,
Gaston