Wijmo UI for the Web
customViewOptions Option
wijmo.datepager.wijdatepager Namespace > options type : customViewOptions Option

The options of custom view.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  Object
    returnsValue = $(".selector").wijdatepager("option", "customViewOptions");
    
    // Set value
    var newValue; // Type:  Object
    $(".selector").wijdatepager("option", "customViewOptions", newValue);
        
});
var customViewOptions : Object;
Example
$("#datepager").wijdatepager({ 
        customViewOptions: {
            unit: "day",
            count: 2
        }
    });
Remarks
The options of the custom view. options object fields: unit - String, the time unit of custom view possible values are "day", "week", "month", "year"; count - number, the count of time span, depends on the unit; Default: { unit: "day", count: 1 }
See Also

Reference

options type
wijdatepager jQuery Widget