Search
Selection.enabled Property
See Also
 






Gets or sets a value indicating whether users are allowed to select date cells.

Namespace: MindFusion.Scheduling
File: Selection.js

 Syntax

JavaScript  Copy Code

get enabled() {}

 Property Value

Boolean. true if selection is enabled, otherwise false.

 Example

Here is how you check if multiple selection in the calendar is allowed. Note: 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

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

if (calendar.selection.enabled)
{
    //do something
}

 See Also