We are using the Angular Scheduler component and have approximately 400 resources, each with its own HTML content.
When an event is added, removed or changed within a resource, we need to update that resource with new counters. To do this, we use the method this.scheduler.control.update({resources: this.scheduler.control.resources})
to update all resources.
The problem is that this method updates all resources and also resets our keyboard navigation again (probably because rows and cells are re-rendered).
Is there a possibility of updating the HTML of one resource without re-rendering the rest? The HTML content is now set via args.resource.html
in the event handler onBeforeResHeaderRender
.