A number of our events have a start time, but do not really have a specific end.
Of course, these do not show up in the calendar.
It would be a nice enhancement to allow this…
A number of our events have a start time, but do not really have a specific end.
Of course, these do not show up in the calendar.
It would be a nice enhancement to allow this…
Can be solved like next
scheduler.attachEvent("onEventLoading", function(ev){
if (!ev.end_date)
ev.end_date = scheduler.date.add(ev.start_date,1,"hour");
return true;
});
Actually, we don’t want to advertise a end time.
Think of it like:
They will not really have a specific end time…
Make sense?
Still to render event in the scheduler you need to define some end point ( the lenght of event bar must be calculated somehow )
You can change used templates, so they will show only start date ( so user will not see end date )