Hello I just need to keep the name and not the start time and end time in the cell.
Is it possible in calendar lite to change the label from name start end to name only?
Thanks for your help :)
Nicolas
You can use BeforeEventRender event to modify the event HTML as needed.
protected void DayPilotCalendar1_BeforeEventRender(object sender, DayPilot.Web.Ui.Events.Calendar.BeforeEventRenderEventArgs e) { e.InnerHTML = e.Text; }
See also:
http://doc.daypilot.org/calendar/event-customization/