RealGrid2 API
Interface
TooltipOptions

TooltipOptions

Configuration model for displaying messages on the screen

Signature:

export interface TooltipOptions
 

Remarks

Specifies the message and disappear time when displaying a message at a specific location on the screen.

gridView.showMessage({message:"user message", hideDuration: 5000}, {itemIndex: 0, column: "column"});
// or
gridView.showMessage("user Position\nuser Message", 100, 100);

Properties

PropertyTypeDescription
hideDurationnumberSpecifies the time in ms that the message is displayed and disappears automatically.
messagestringSpecifies the message to be displayed on the screen.
styleNamestringSpecifies the class of the tooltip element.

Properties Desc

hideDuration

Specifies the time in ms that the message is displayed and disappears automatically.

Type - number


message

Specifies the message to be displayed on the screen.

Type - string


styleName

Specifies the class of the tooltip element.

Type - string