Search
Control.dispose Method
See Also
 






Dispose the control.

Namespace: MindFusion.Common
File: Control.js

 Syntax

JavaScript  Copy Code

function dispose ()

 Remarks

Detaches control event handlers and removes its element from the DOM, if it was internally created.

 Example

The following code uses the dispose method to hide a Clock gauge that is no longer rendered on the web page.

JavaScript  Copy Code

function stopClock()
{
 clearInterval(timerId);

 document.getElementById("clock").parentNode.style.visibility = "hidden";

 var clock = g.OvalGauge.find("clock");
 if (clock)
  clock.dispose();
}

 See Also