Wijmo UI for the Web
selectionMode Option
wijmo.calendar.wijcalendar Namespace > options type : selectionMode Option

Gets or sets the date selection mode on the calendar control that specifies whether the user can select a single day, a week, or an entire month.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  any
    returnsValue = $(".selector").wijcalendar("option", "selectionMode");
    
    // Set value
    var newValue; // Type:  any
    $(".selector").wijcalendar("option", "selectionMode", newValue);
        
});
var selectionMode : any;
Example
$("#calendar1").wijcalendar(
            { selectionMode: {day:true, weekDay:true}}
  );
Remarks
Possible fields in hash are: day, days, weekDay, weekNumber, month.
See Also

Reference

options type
wijcalendar jQuery Widget