I saw a post about this but there was no resolution. What I have is y_unit values loaded during the CreateTimeline call. When the user moves an event some database actions are called using jQuery ajax. The ajax call returns the updated event information as well as the update y_unit values. If an event enters a certain condition I wanted to add a * on the y_unit value to let the user know that event is in that special condition. The event portion is functioning as expected but I am not sure how to update the y_unit value to the scheduler after init. I would like it to not reset to the top of the scheduler and also not collapse the tree scheduler nodes. Any ideas?
Hi,
you can access y_units directly in timeline configuration, it is stored in scheduler.matrix[viewName] property
var item = scheduler.matrix["timeline"].y_unit[nth];
item.label = "* " + item.label;
scheduler.updateView();