A newer version of this page is available. Switch to the current version.

jQuery Tooltip - hideEvent

Specifies properties of popover hiding. Ignored if the shading property is set to true.

Type:

Object

|

String

Default Value: undefined

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

JavaScript
hideEvent: "mouseleave"

delay

The delay in milliseconds after which the UI component is hidden.

Type:

Number

Default Value: undefined

name

Specifies the event names on which the UI component is hidden.

Type:

String

Default Value: undefined

The property 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
hideEvent: {
    name: "dxdblclick mouseout",
    delay: 70
}