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

Default value: null

A dataview object to bind to events data

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  object
    returnsValue = $(".selector").wijevcal("option", "dataSource");
    
    // Set value
    var newValue; // Type:  object
    $(".selector").wijevcal("option", "dataSource", newValue);
        
});
var dataSource : object;
Example
var dv = $.wijmo.wijdataview({....});
$("#eventscalendar").wijevcal({
  dataSource: dv
})
See Also

Reference

options type
wijevcal jQuery Widget