Version

CalendarClientSideEvents Class

Manages the names of custom event handler functions called by Javascript on the client-side.
Syntax
'Declaration
 
Public Class CalendarClientSideEvents 
public class CalendarClientSideEvents 
Remarks

Because of the stateless nature of web connections, and the typical delays involved in retrieving information from a server, WebSchedule implements both client-side events and server-side events. Applications can choose whether they would like to respond to client-side events, which must be written in Javascript.

The CalendarClientSideEvents object maintains a list of event handlers that are implemented on the client and called in response to events as they occur in the browser. Each event is a string that represents JavaScript function name. The named function must be implemented by the developer in JavaScript code.

Most Javascript event handler functions will receive three arguments (the InitializeCalendar event receives only one argument.) The first parameter contains a reference to the Javascript object representing the Calendar CSOM object. The second parameter typically contains a Javascript Date object. The third parameter contains a reference to the CSOM object representing the event. See the events' descriptions for more details.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also