serialized data coming out wierd

For some reason or another my serialized data is coming out with like this:

[{“text”:“Sister Act”,“id”:1261150506,“end_date”:“2011-01-03T23:59:12.896Z”,“start_date”:“2011-01-02T00:00:00.000Z”,“details”:“Palladium”},

Wierd no doubt. It can’t load it back into mobile scheduler because of the wierd format. Help.

Hello,

How do you serialize it?
The problem is with “end_date”:“2011-01-03T23:59:12.896Z”
here end_date time object was simply converted to string as is. You need to format it before hand using scheduler.date.date_to_str function.

Or you can use our serialize extension, please check scheduler/samples/04_export/02_serialize_json.html sample.

Kind regards,
Ilya