Search
ListContainer.detach Method
See Also
 






Control.detach override.

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

 Syntax

JavaScript  Copy Code

function detach ()

 Example

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

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

 See Also