Skip to main content

ASPxClientHintOptions.title Property

Gets or sets a value that is the hint’s title.

Declaration

title: string

Property Value

Type Description
string

A string value that is the title text.

Remarks

To specify that the hint’s title content should be obtained from the target element’s attribute value, use the ASPxClientHintOptions.titleAttribute property. To define the hint’s content, use the ASPxClientHintOptions.content or the ASPxClientHintOptions.contentAttribute properties.

ASPxClientHint.Register('.class_name', {
  content: 'sample content', 
  title: 'sample title',
  position: 'top',
  showCallout: 'false',
  offset: 10,
  animation: 'false',
  triggerAction: 'hover'
});
See Also