Cancel drag on key press Angular cdk Drag and Drop

后端 未结 5 484
醉话见心
醉话见心 2021-01-11 23:16

I´m working in a application implementing the new drag and drop from angular material CDK and i´m trying to cancel the drag event of the element pressing Esc, i

5条回答
  •  半阙折子戏
    2021-01-11 23:50

    You can use something like...

    @HostListener('window:keyup', ['$event'])
    handleKeyboardEvent(event: KeyboardEvent) {
        if (event.code === 'Escape') {
            // call dragend event
        }
    }
    

提交回复
热议问题