Search
YearView.detach Method
See Also
 






Control.detach override.

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

 Syntax

JavaScript  Copy Code

function detach ()

 Example

The following code detaches the event handlers of a YearView and sets its value to null:

JavaScript  Copy Code
function closeButtonClicked(sender, args)
{
    yearView.detach();
    yearView = null;
}

 See Also