Hi,
I'm using the scheduler as a time report board, where the users can report their absences or working time on projects. After entering, changing or deleting a time amount in any day, the total will be calculated per each project or absence type and then the total for all projects or absences will be calculated too. Both totals will be shown in a column of a resource. Please see also the attached screenshot.
Theses totals are calculated in the event onEventEdited. I update the resources by calling this method:
this.scheduler.control.update({ resources: this.resources });
This call leads to a poor performance, because I'm updating all resources and it seems that this leads to a new complete rendering of the scheduler.
So my question is, if there is a way to update just certain columns of the resources. The resources stay always the same. I don't add or remove any resource during the calculation of these totals.
Best regards