Hi Guys,
I am trying to get the scheduler to load events via the ajax Load. Since the timeline view requires some setup for the resources i.e.
var sections = [
{ key: 1, label: “James Smith” },
{ key: 2, label: “John Williams” },
{ key: 3, label: “David Miller” },
{ key: 4, label: “Linda Brown” }
];
when getting new data I will call
scheduler.load(“data.php”, function () {
});
however that won’t reset my sections.
Is there a way of doing this without manually extraction the sections from the json and re-initialising the the timeline?
Thanks,
Darren.