Wijmo UI for the Web
viewType Option
wijmo.evcal.wijevcal Namespace > options type : viewType Option

Default value: 'day'

The active view type. Possible values are: day, week, month, list. If it is a custom view, the viewType should be its name.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  string
    returnsValue = $(".selector").wijevcal("option", "viewType");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijevcal("option", "viewType", newValue);
        
});
var viewType : string;
Example
$("#eventscalendar").wijevcal(
  { viewType: "month" });
See Also

Reference

options type
wijevcal jQuery Widget