Click or drag to resize
KaxSchedulerNavigationCommand Event
Occurs when the KaxScheduler is about to execute a navigation command.

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 SchedulerNavigationCommandEventHandler NavigationCommand

Value

Type: Kettic.AspNet.ControlsSchedulerNavigationCommandEventHandler
Remarks
You can use this event to customize the action when the KaxScheduler is about to execute a navigation command. The event can be cancelled by setting the SchedulerNavigationCommandEventArgs.Cancel property of SchedulerNavigationCommandEventArgs to true.
Examples
void KaxScheduler1_NavigationCommand(object sender, SchedulerNavigationCommandEventArgs e)
{
    if (e.Command == SchedulerNavigationCommand.NavigateToNextPeriod)
    {
        e.Cancel = true;
    }
}
See Also