All docs
V19.1
24.1
The page you are viewing does not exist in version 24.1.
23.2
The page you are viewing does not exist in version 23.2.
23.1
The page you are viewing does not exist in version 23.1.
22.2
The page you are viewing does not exist in version 22.2.
22.1
The page you are viewing does not exist in version 22.1.
21.2
The page you are viewing does not exist in version 21.2.
21.1
The page you are viewing does not exist in version 21.1.
20.2
The page you are viewing does not exist in version 20.2.
20.1
The page you are viewing does not exist in version 20.1.
19.2
19.1
18.2
18.1
17.2
A newer version of this page is available. Switch to the current version.

DevExtreme jQuery - Keyboard Support

An end user can use the following keys to interact with the widget.

Key Action
Alt + ↓ Opens the drop-down menu.
Enter or Backspace If the drop-down menu is closed, opens it; otherwise selects the current item.
Esc Closes the drop-down menu.
↑ / ↓ If the drop-down menu is opened, moves focus to the previous/next item.
Tab / Shift + Tab If the drop-down menu is opened, moves focus to the list / search field.

You can implement a custom handler for a key using the registerKeyHandler(key, handler) method.

jQuery
JavaScript
function registerKeyHandlers () {
    let lookup =  $("#lookupContainer").dxLookup("instance");
    lookup.registerKeyHandler("backspace", function (e) {
        // The argument "e" contains information on the event
    });
    lookup.registerKeyHandler("space", function (e) {
        // ...
    });
}
Angular
TypeScript
import { ..., ViewChild, AfterViewInit } from "@angular/core";
import { DxLookupModule, DxLookupComponent } from "devextreme-angular";
// ...
export class AppComponent implements AfterViewInit {
    @ViewChild(DxLookupComponent, { static: false }) lookup: DxLookupComponent
    // Prior to Angular 8
    // @ViewChild(DxLookupComponent) lookup: DxLookupComponent
    ngAfterViewInit () {
        this.lookup.instance.registerKeyHandler("backspace", function (e) {
            // The argument "e" contains information on the event
        });
        this.lookup.instance.registerKeyHandler("space", function (e) {
            // ...
        });
    }
}
@NgModule({
    imports: [
        // ...
        DxLookupModule
    ],
    // ...
})
See Also