KaxSchedulerAppointmentCreated Event |
Occurs when an appointment template has been instantiated.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic event AppointmentCreatedEventHandler AppointmentCreated
Public Event AppointmentCreated As AppointmentCreatedEventHandler
public:
event AppointmentCreatedEventHandler^ AppointmentCreated {
void add (AppointmentCreatedEventHandler^ value);
void remove (AppointmentCreatedEventHandler^ value);
}
member AppointmentCreated : IEvent<AppointmentCreatedEventHandler,
AppointmentCreatedEventArgs>
Value
Type:
Kettic.AspNet.ControlsAppointmentCreatedEventHandler
Remarks
You can use this event to modify the appointment template before data binding.
Examplesvoid KaxScheduler1_AppointmentCreated(object sender, AppointmentCreatedEventArgs e)
{
Label testLabel = (Label) e.Container.FindControl("Test");
testLabel.Text = "Test";
}
Sub KaxScheduler1_AppointmentCreated(sender As Object, e As AppointmentCreatedEventArgs)
Dim testLabel As Label = CType(e.Container.FindControl("Test"), Label)
testLabel.Text = "Test"
End Sub
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also