Hi all,
my senario is a Schedule with Timeline Grouping.
The hierarchical structure I have to represent is not balanced, so I have some branch with 3 or 4 nested levels while other branch may have only two levels. In any case the last level is a "leaf".
As exeption there are some nodes that may be eligible for some appointment.
The probem I'm facing off is that the Agenda view get an error (below) that freeze the schedule in the loading state.
TypeError: Cannot read properties of undefined (reading 'length') (constants.js:111)
This happens both with appointments and without
Any help is appreciated.
PS: I know it's another question but I try: do there is a way to specify formatting for "leaf" cells (white instead of gray)? Remember that there are some node I have to represent as leaf
TIA
Hi thanks for your replay.
For the first point I'll wait, tanks.
About the secon question, as per your example, I have to manage as leaf certain rows at Machine 1 level (nodes). So in the previous example I need to apply white color to Machine 1 and Feature 1 rows. Can I apply this style with binding or I have to post process the whole schedule?
TIA
Ax
|
<style>
.e-schedule .e-timeline-view .e-resource-group-cells, .e-schedule .e-timeline-month-view .e-resource-group-cells {
background-color: #fff;
}
.e-schedule .e-timeline-view .e-resource-cells, .e-schedule .e-timeline-month-view .e-resource-cells.e-parent-node {
background-color: #fff;
}
</style> |
Ok, thanks