ASPxClientHintOptions.content Property
Gets or sets the hint’s content.
Declaration
content: string
Property Value
Type | Description |
---|---|
string | A string value that is the hint’s content. |
Remarks
To specify that the hint’s content should be obtained from the target element’s attribute value, use the ASPxClientHintOptions.contentAttribute property. To define the hint’s title, use the ASPxClientHintOptions.title or the ASPxClientHintOptions.titleAttribute properties.
ASPxClientHint.Register('.class_name', {
content: 'sample content',
position: 'top',
showCallout: 'false',
offset: 10,
animation: 'false',
triggerAction: 'hover'
});
See Also