ASPxScheduler.CustomShortcuts Property
Provides access to a collection of custom keyboard shortcuts.
Namespace: DevExpress.Web.ASPxScheduler
Assembly: DevExpress.Web.ASPxScheduler.v24.1.dll
NuGet Package: DevExpress.Web.Scheduler
Declaration
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