serverList make a call only the first time

Hi,

I have a timeline minute with setLoadMode, my problem is that on every change day I can have different y_unit.
My problem is that the setLoadMode make a call only the first time that I go to the day.
So if I go to day 1, make call and I have y_unit with 3 elements, when I go to day 2 make a call and I have y_unit with 0 elements, if I return to day1 don’t make any call so I have y_unit with 0 elements and is a error


  scheduler.createTimelineView({
      name: "timeline",
      x_unit: "minute",
      x_date: "%H:%i",
      x_step: 60,
      x_size: 24,
      x_start: 0,
      y_unit:scheduler.serverList("sections",[]),
      y_property: "section_id",
      render:"bar",
  });

    scheduler.setLoadMode("day");

Hi,

if you have set empty array as the second parameter in serverList method,

it is normal that when you go to the next day, sections will be updated and you have y_unit with 0 elements.