Search
MonthView Class
See Also
 






Displays a month, represented by a grid of day cells.

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

 Syntax

JavaScript  Copy Code

// class
MonthView.prototype = {}

 Example

The following code creates a new Calendar instance using a reference to an HTML div with an id "calendar". The view is set to MonthView.

JavaScript  Copy Code

var u = MindFusion.Common.UI;

var calendar = u.Calendar(document.getElementById("calendar"));
calendar.view = new u.MonthView();

 Inheritance Hierarchy

MindFusion.Common.UI.UIControl
    MindFusion.Common.UI.DateTimeView
        MindFusion.Common.UI.MonthView

 See Also