Hello,
I am using the angular2 component of the scheduler and I am trying to display children for resource rows.
The configuration looks something like this:
config: any = {
scale: 'Hour',
cellWidth: 50,
resources: [
{ name: "Room A", id: "A", expanded: true, children:[
{ name : "Room A.1", id : "A.1" },
{ name : "Room A.2", id : "A.2" }
]
},
{ name: "Room B", id: "B" }
],
width: '100%',
startDate: '2017-01-01',
days: 2
};
But only 'Room A' and 'Room B' is displayed but not the children of 'Room A'. Any ideas why this happens?