Click or drag to resize
KaxSchedulerAppointmentCommand Event
Occurs when a button is clicked within the appointment template.

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 AppointmentCommandEventHandler AppointmentCommand

Value

Type: Kettic.AspNet.ControlsAppointmentCommandEventHandler
Remarks
The AppointmentCommand event is raised when any button is clicked withing the appointment template. This event is commonly used to handle button controls with a custom CommandName value.
Examples
void KaxScheduler1_AppointmentCommand(object sender, AppointmentCommandEventArgs e)
{
    if (e.CommandName == "Delete")
    {
        Delete(e.Container.Appointment);
    }
}
See Also