ASPxClientHintOptions.triggerAction Property
Gets or sets which user action triggers a hint.
Declaration
triggerAction: string
Property Value
Type | Description |
---|---|
string | A string value that is a user action. |
Remarks
Use the triggerAction property to specify which user action will trigger a hint.
ASPxClientHint.Register('.class_name', {
content: 'sample content',
title: 'sample title',
position: 'top',
showCallout: 'false',
offset: 10,
animation: 'false',
triggerAction: 'hover'
});
Note that the triggerAction property can specify more than one action that triggers a hint.
ASPxClientHint.Register('.class_name', {
triggerAction: 'hover focus'
});
See Also