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

Default value: []

The event objects array. This option is read-only. This option is deprecated: please, use eventsData option, instead.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  array
    returnsValue = $(".selector").wijevcal("option", "appointments");
    
    // Set value
    var newValue; // Type:  array
    $(".selector").wijevcal("option", "appointments", newValue);
        
});
var appointments : array;
Example
$("#eventscalendar").wijevcal(
          { eventsData: [{id: "appt1", 
              start: new Date(2011, 4, 6, 17, 30), 
              end: new Date(2011, 4, 6, 17, 35) }] });
See Also

Reference

options type
wijevcal jQuery Widget