Search
TabControl.detach Method
See Also
 






ListContainer.detach override.

Namespace: MindFusion.Common.UI
File: TabControl.js

 Syntax

JavaScript  Copy Code

function detach ()

 Example

The following code hides a TabControl instance, which is of type ListContainer and detaches its event handlers.

JavaScript  Copy Code
function windowClosing(sender, args)
{
     tabControl.visible = false;
     tabControl.detach();
    
}

 See Also