Click or drag to resize
KaxSchedulerAppointmentCreated Event
Occurs when an appointment template has been instantiated.

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 AppointmentCreatedEventHandler AppointmentCreated

Value

Type: Kettic.AspNet.ControlsAppointmentCreatedEventHandler
Remarks
You can use this event to modify the appointment template before data binding.
Examples
void KaxScheduler1_AppointmentCreated(object sender, AppointmentCreatedEventArgs e)
{
    Label testLabel = (Label) e.Container.FindControl("Test");
    testLabel.Text = "Test";
}
See Also