Search
ViewCell.isHeader Property
See Also
 






Gets a value indicating whether this cell is a header cell.

Namespace: MindFusion.Scheduling
File: ViewCell.js

 Syntax

JavaScript  Copy Code

get isHeader() {}

 Property Value

true if the cell is a header; otherwise false.

 Remarks

Only applies to Timetable view cells.

 Example

The following code creates a calendar and sets its current view to Timetable. The code assumes you have initialized a <div> element with id “calendar” in a web page that references the JavaScript file, which contains this code:

JavaScript  Copy Code

var p = MindFusion.Scheduling;

// create a new instance of the calendar
this.calendar = new p.Calendar(document.getElementById("calendar"));

// set the view to MonthRange, which displays several months in a grid
calendar.currentView = p.CalendarView.Timetable;

 See Also