parsing event id from json

My apologies if this has already been covered elsewhere but I’m unable to find anything to shed light on this.

I am pulling event data from the server in JSON form and using scheduler.load(url, “JSON”) to load the events. My issue is that the unique event ids from the server are not being parsed by the scheduler. Instead all event ids are replaced with randomly generated ids.

Can you tell me what I’m doing wrong? I have already verified that the event ids are being sent from the server.

Thanks
Alex

Nevermind, I didn’t understand that the original unique ids were still there and that the scheduler was also generating its own ids to track events. I’m able to recover the original id by retrieving the event objects and accessing the relevant property.

But I ran into a new problem, I will post another thread and ask for advice.

Hello,

Scheduler can use your event ids but you need to pass them as ‘id’ property.

scheduler.parse([ { id: "test", start_date: "2009-06-30 09:00", end_date: "2009-06-30 12:00", text:"Task A-12458", section_id:1} ],"json");
Best regards,
Ilya

Understood, I had been passing them as event_id.

Thank you.