Search
WebComponents.register Method
See Also
 





Registers the controls in the package as web components.

Namespace: MindFusion.Diagramming
File: WebComponents.js

 Syntax

JavaScript  Copy Code

function register ()

 Remarks

Call this method to register the control classes from Diagramming package as web components. After registration, the browser instantiates corresponding classes for following tags in HTML code:

HTML

JS Class

<mindfusion-diagramview>

DiagramView

<mindfusion-overview>

Overview

<mindfusion-nodelistview>

NodeListView

<mindfusion-ruler>

Ruler

<mindfusion-zoomcontrol>

ZoomControl

You can get a reference to objects created by the browser by calling the find method of corresponding class with id attribute's value as argument.

 See Also