Hello!
Usecase:
I have a timeline that has users for lanes, and various records for events. I have various formatting rules related to the events based on the data in the records.
I would like to basically have the eventcustomizer re-evaluated for every event in the timeline, (and have it redraw of course) when some stuff changes outside the timeline.
I am now using
, and while that does work, it also triggers a re-fetch from the server, which i'm trying to avoid (might be several thousand rows). I know that the data hasn't changed on the server, so i don't want to re-fetch it.
Is there a way to accomplish this?
Cheers
Usecase:
I have a timeline that has users for lanes, and various records for events. I have various formatting rules related to the events based on the data in the records.
I would like to basically have the eventcustomizer re-evaluated for every event in the timeline, (and have it redraw of course) when some stuff changes outside the timeline.
I am now using
Code:
timeline.getSelectedView().rebuild();
Is there a way to accomplish this?
Cheers
Comment