Skip to main content

ASPxScheduler.CustomShortcuts Property

Provides access to a collection of custom keyboard shortcuts.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v23.2.dll

NuGet Package: DevExpress.Web.Scheduler

Declaration

public SchedulerCustomShortcutCollection CustomShortcuts { get; }

Property Value

Type Description
SchedulerCustomShortcutCollection

A SchedulerCustomShortcutCollection object.

Example

This code example demonstrates how to use the ASPxScheduler API to define a new keyboard shortcut and associate it with custom client-side logic.

function onShortcut(scheduler, args) {
    if (args.commandName == "myTab") {

        // Your custom logic to process a keyboard shortcut. 

        args.handled = true;
    }
}
See Also