A newly constructed HTMLInfo can be assigned as a value of TextEditingTool.defaultTextEditor, TextBlock.textEditor GraphObject.contextMenu, Diagram.contextMenu, GraphObject.toolTip, or Diagram.toolTip.
Optional
init: Partial<HTMLInfo>Gets or sets the function to call when an HTMLInfo is to be hidden. The function should "hide" the HTMLInfo, either by removing any traces of it or otherwise returning the page state to one where the HTMLInfo content is no longer considered active.
Setting this is not strictly necessary, if no action is to be taken when hiding the HTMLInfo.
If this is called by:
Gets or sets the primary HTML Element that represents this HTMLInfo. In a context menu, this would be the outermost HTML element, the one which typically shows and hides. If this is set and hide is not, HTMLInfo will automatically execute:
info.mainElement.style.display = "none";
when hide would typically be called.
This is set only for convenience; the default value for this property is null.
Gets or sets the function to call when an HTMLInfo is to be shown, such as when used as the GraphObject.contextMenu or Diagram.toolTip or TextBlock.textEditor.
If this is called by:
If you need access to any bound data for the first argument, if it is non-null, you can get it via:
obj.part.data
and then you can look at any of the properties you have put on that data.
When used as a context menu, typically shown elements, such as buttons, should call
diagram.currentTool.stopTool();
when their action is completed.
Gets or sets a function that returns the primary value associated with this HTMLInfo, such as the string value of a text editor, which would be solicited by the TextEditingTool.
This typically returns a string.
HTMLInfo is used to show and hide custom HTML page elements, such as a context menu, tooltip, or text editor made of HTML.
Properties that can be set to an HTMLInfo include:
When a context menu is set to an instance of HTMLInfo, ContextMenuTool.showContextMenu and ContextMenuTool.hideContextMenu call show and hide respectively. You may define mainElement instead of hide in order to automatically use a default hide method.
When a tooltip is set to an instance of HTMLInfo, ToolManager.showToolTip and ToolManager.hideToolTip call show and hide respectively.
When a text editor is set to an instance of HTMLInfo, TextEditingTool.doActivate calls show and TextEditingTool.doDeactivate calls hide.
For HTMLInfo to work, you must define show and either hide or mainElement. Typical usage will also stop the ContextMenuTool once the desired context action occurs, typically by calling
diagram.currentTool.stopTool();
.Example usage of HTMLInfo can be found in the Custom Context Menu and HTML LightBox Context Menu samples, the Custom TextEditingTool sample, and the Text Editor implementation extension.
Here is the outline for typical usage of HTMLInfo as a context menu:
By default, TextEditingTool.defaultTextEditor is an instance of HTMLInfo. You can see its default implementation details here.