search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Issue with loading events data from array.

Asked by Sudheer
7 years ago.

Hi,

I'm using version 8.2 for understanding scheduler hour view. I'm facing issue loading events from array. Below is the code.
.
dp.startDate = new DayPilot.Date("2013-03-24");
dp.resources = [
{ name: "Room A", id: "A"},
{ name: "Room B", id: "B" },
{ name: "Room C", id: "C" }];

var e = new DayPilot.Event({
start: new DayPilot.Date("2013-03-24T03:00:00"),
end: new DayPilot.Date("2013-03-24T05:00:00"),
id: DayPilot.guid(),
resource: "B",
text: "Busy"
});
dp.events.add(e); //events are showing when using new daypilot object

but below code not displaying the events

dp.events = [{text: "Busy", start: "2013-03-24T03:00:00", end: "2013-03-24T05:00:00", id: 10, resource: "B"}];

Could you please let me know what causing the issue ?

Answer posted by Dan Letecky [DayPilot]
7 years ago.

You need to change "dp.events" to "dp.events.list":

dp.events.list = [{text: "Busy", start: "2013-03-24T03:00:00", end: "2013-03-24T05:00:00", id: 10, resource: "B"}];

See also:
https://doc.daypilot.org/scheduler/event-loading/

Comment posted by Sudheer
7 years ago.

Thanks Dan.

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.