Search
DecadeView.detach Method
See Also
 






DateTimeView.detach override.

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

 Syntax

JavaScript  Copy Code

function detach ()

 Example

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

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

 See Also