Hello,
Im creating a scheduler object with this settings:
scheduler.config.fix_tab_position = false;
scheduler.config.details_on_create=true;
scheduler.config.details_on_dblclick=true;
scheduler.config.xml_date="%Y-%m-%d %H:%i";
scheduler.config.readonly = true;
scheduler.config.first_hour = 23;
scheduler.config.last_hour = 33;
scheduler.config.separate_short_events = true;
scheduler.createUnitsView({
name:"unit",
property:"section_id",
list:sections,
size:100,
step:1
});
scheduler.init('scheduler_here',data,"unit");
Then i loaded 2 events to the object, one starting at 23:10 and ending at 23:30, which appears. The second starting at 00:10 and ending at 00:30 on the next day, but this one is not showing.
The event is loaded correctly because if i change to grid view it’s there. It is just not showing in unit view, why?