Hi,
I met a strange behaviour regarding a scheduler using several Units views.
Actually, I have 2 unit views, containing two kind of data (same structure).
when I load the scheduler, the first view loaded contains the correct events.
But, when i’m loading the other unit view, all events are attached to the left hand column.
The events dates are respected but not the event owner.
The expected behaviour would be to not show those events using the ‘user_id’ property.
I equally use the multisource plugin but i’m not sure this is useful in my case.
Here is a sample code of the scheduler loading :
scheduler.createUnitsView({“name” : “ex1”, “property” : “user_id”, “list” : users.ex1, “size” : 4});
scheduler.createUnitsView({“name” : “ex2”, “property” : “user_id”, “list” : users.ex2, “size” : 4});
scheduler.load(["/agenda/ajax-retrieve-rdv/ex1/1", “/agenda/ajax-retrieve-rdv”], 'json);
Is the multiple unit view supported ?
Or am I wrong about the way to load a multiple unit view ?
Thank for your reponses.