How to disable event time on DayPilotScheduler?

Asked by annoiz
14 years ago.

Hi,
How to disable event start and end time on DayPilotScheduler? on the DayPilotMonth have that properties, but on DayPilotScheduler and DayPilotCalendar dont have. is there any way to disable? its look so messy if the start and end time appear.

Thank you in advance.

Answer posted by Dan Letecky [DayPilot]
14 years ago.

Until the special switch is added to the Scheduler it can be customized using BeforeEventRender event handler:

protected void DayPilotScheduler1_BeforeEventRender(object sender, DayPilot.Web.Ui.Events.BeforeEventRenderEventArgs e)
{
  e.InnerHTML = e.Text;
}

This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.