Click or drag to resize
KaxSchedulerAppointmentDataBound Event
Occurs when an appointment has been added to the Appointments collection from the data source.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public event AppointmentDataBoundEventHandler AppointmentDataBound

Value

Type: Kettic.AspNet.ControlsAppointmentDataBoundEventHandler
Remarks
You can use this event to make adjustments to the appointments as they are being loaded.
Examples
void KaxScheduler1_AppointmentDataBound(object sender, SchedulerEventArgs e)
{
    e.Appointment.Start = e.Appointment.Start.AddHours(1);
}
See Also