Vue ContextMenu - showEvent

Specifies options for displaying the widget.

Type:

Object

|

String

Default Value: 'dxcontextmenu'

If you assign only a string that specifies event names on which the widget is shown, the widget will not apply any delay.

JavaScript
showEvent: 'dxclick'

delay

The delay in milliseconds after which the widget is displayed.

Type:

Number

Default Value: undefined

name

Specifies the event names on which the widget is shown.

Type:

String

Default Value: undefined

The option takes a string value representing a DOM event or a DevExtreme UI Event name. You can also pass several event names separated by a space. The DevExtreme and DOM events may be combined.

JavaScript
showEvent: {
    name: "dxdblclick keyup",
    delay: 70
}