Search
MonthView.detach Method
See Also
 






Control.detach override.

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

 Syntax

JavaScript  Copy Code

function detach ()

 Example

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

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

 See Also