Search
UIControl.draw Method
See Also
 






Draws the UIControl.

Namespace: MindFusion.Common
File: UIControl.js

 Syntax

JavaScript  Copy Code

function draw ()

 Return Value

HTMLElement. The control DOM element.

 Example

The following code uses the draw method in a method that creates a ToolStrip programmatically:

JavaScript  Copy Code

function loadChatWindow(sender)
{
 var tools = new ui.ToolStrip();
 tools.theme = theme;
 tools.scrollable = false;
 tools.allowDrag = false;
 tools.itemClick.addEventListener(onToolClick);

 tools.items.add(new ui.ToolStripItem(ui.ToolStripItemType.Separator));

 sender.element.querySelector("#toolstrip").appendChild(tools.draw());
 tools.attach();
}

 See Also