Is it possible to set time for an event and display the start/end time as the picture? Without using the details (event_name).
Hello,
You can edit which lightbox sections you want to display, for example:
scheduler.config.lightbox.sections=[
{name:"time", height:72, type:"time", map_to:"auto"}
];
Kind regards,
Ilya
Yeah, but how can i display 08-10 instead of event_name in the scheduler?
You need to edit scheduler.templates.event_bar_text template.
scheduler.templates.event_bar_text = function(start,end,ev) {
return "Hello there!";
};
Best regards,
Ilya