Events from in line dataset AND from database

Hello,

All is said…
I would like have in the same scheduler events from a DB… And add events from a json dataset.

I’d tried to simply with pasting a json dataset but it doesn’t work…

Thank for help.

Inline data can be loaded using scheduler.parse method (be sure to specify ‘json’ data type),
docs.dhtmlx.com/scheduler/api__s … parse.html

can you provide a demo where the issue happens?

Yes, for this is ok but when it run, the event from de DB are not displayed anymore, only de JSON events…

This normal scheduler using the DB:

And this is the same one whith just this code added: scheduler.parse([ { start_date: "2015-11-26 00:00:00", end_date: "2015-11-27 00:00:00", text:"8", commentaire:"Marc" }, { start_date: "2015-11-29 00:00:00", end_date: "2015-11-30 00:00:00", text:"8", commentaire:"Maria" }, { start_date: "2015-11-15 00:00:00", end_date: "2015-11-16 00:00:00", text:"8", commentaire:"Irina" }, ],"json");

I don’t understand…

A little up.
I don’t find any literature about that incompatibility…