Search
Control Constructor
See Also
 






Initializes a new instance of the Control class.

Namespace: MindFusion.Common
File: Control.js

 Syntax

JavaScript  Copy Code

function Control ([element])

 Parameters

element
Optional.

HTMLElement. The control's associated Dom element.

 Example

The following code creates a new instance of the ListView control, which inherits the Control class. Note that the constructor uses a DOM element with an id listView:

JavaScript  Copy Code

var ui = MindFusion.UI;

var listView;
var host;
var theme = "gray";

document.addEventListener("DOMContentLoaded", function ()
{
 listView = new ui.ListView(document.getElementById("listView"));
 listView.width = listView.height = ui.Unit.percentage(100);
 listView.theme = theme;
 listView.itemSize = ui.Unit.pixel(100);
 listView.itemDoubleClick.addEventListener(handleItemDoubleClick);
 ........................................
 ........................................
}

 See Also