Wijmo UI for the Web
updateEvent Method
Event object. Event object fields: id - String, unique event id, this field generated automatically; calendar - String, calendar id to which the event belongs; subject - String, event title; location - String, event location; start - Date, start date/time; end - Date, end date/time; description - String, event description; color - String, event color; allday - Boolean, indicates all day event tag - String, this field can be used to store custom information.
Function that will be called when event is updated.
Function that will be called when event can not be updated.(e.g. due to data source or memory problems).
Updates the existing event.
Syntax
Javascript (Usage) 
var instance = new jQuery.wijmo.wijevcal();
var value; // Type: bool

// Parameters
var o; // Type:  object
var successCallback; // Type:  any
var errorCallback; // Type:  any

value = instance.updateEvent(o, successCallback, errorCallback);
Javascript (Specification) 
function updateEvent( 
   o : object,
   successCallback : any,
   errorCallback : any
) : bool;

Parameters

o
Event object. Event object fields: id - String, unique event id, this field generated automatically; calendar - String, calendar id to which the event belongs; subject - String, event title; location - String, event location; start - Date, start date/time; end - Date, end date/time; description - String, event description; color - String, event color; allday - Boolean, indicates all day event tag - String, this field can be used to store custom information.
successCallback
Function that will be called when event is updated.
errorCallback
Function that will be called when event can not be updated.(e.g. due to data source or memory problems).
Example
$("#wijevcal").wijevcal("updateEvent", { 
    start: new Date(2011, 4, 2, 0, 32), 
    end: new Date(2011, 4, 2, 0, 50), 
    subject: "Subject" });
Browser Compatibility
7
5
5

See Also

Reference

wijevcal type

 

 


© 2013 All Rights Reserved.

Send comments on this topic.