ASPxScheduler.CustomShortcuts Property
In This Article
Provides access to a collection of custom keyboard shortcuts.
Namespace: DevExpress.Web.ASPxScheduler
Assembly: DevExpress.Web.ASPxScheduler.v24.2.dll
NuGet Package: DevExpress.Web.Scheduler
#Declaration
public SchedulerCustomShortcutCollection CustomShortcuts { get; }
#Property Value
Type | Description |
---|---|
Scheduler |
A Scheduler |
#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