Version

WebScheduleInfo Client-Side Events

Client Events

Client Events Methods

ActiveDayChanged

This event fires after the ActiveDay has changed.

Parameters

scheduleInfo

The WebScheduleInfo client-side object. evnt

The event object, which allows you to cancel the event, cancel the postback, or request a postback. newDate

The date of the new ActiveDay.

ActiveDayChanging

This event fires before the ActiveDay changes.

Parameters

scheduleInfo

The WebScheduleInfo client-side object. evnt

The event object, which allows you to cancel the event, cancel the postback, or request a postback. oldDate

The date of the previous ActiveDay. newDate

The date of the new ActiveDay.

Remarks

This event is cancelable:

evnt.cancel = true;

ActivityAdding

This event fires before the Activity is added.

Parameters

scheduleInfo

The WebScheduleInfo client-side object. evnt

The event object, which allows you to cancel the event, cancel the postback, or request a postback. activity

The activity object to be added. id

The id is a field that either represents the id of the control which caused the event to fire, or the string value passed into the addActivity method.

Remarks

This event is cancelable:

evnt.cancel = true;

ActivityDeleting

This event fires before the Activity is deleted.

Parameters

scheduleInfo

The WebScheduleInfo client-side object. evnt

The event object, which allows you to cancel the event, cancel the postback, or request a postback. activity

The activity object to be deleted. id

The id is a field that either represents the id of the control which caused the event to fire, or the string value passed into the deleteActivity method.

Remarks

This event is cancelable:

evnt.cancel = true;

ActivityDialogEdit

This event fires before the Activity diaog closes, when the user his the "Save and Close" button of the Activity Dialog.

Parameters

scheduleInfo

The WebScheduleInfo client-side object. evnt

The event object, which allows you to cancel the event, cancel the postback, or request a postback. activityEditProps

The dynamic update object which contains the HTML elements of all the controls on the Activity dialog and their values.

Remarks

This event is cancelable:

evnt.cancel = true;

ActivityDialogOpening

This event fires before the Activity Dialog opens.

Parameters

scheduleInfo

The WebScheduleInfo client-side object. evnt

The event object, which allows you to cancel the event, cancel the postback, or request a postback. dialog

The activity dialog object. activity

The activity that will be opened in the dialog.

Remarks

This event is cancelable:

evnt.cancel = true;

ActivityUpdating

This event fires before the Activity is updated.

Parameters

scheduleInfo

The WebScheduleInfo client-side object. evnt

The event object, which allows you to cancel the event, cancel the postback, or request a postback. activityUpdateProps

The dynamic Activity object which contains the fiels of the activity that are going to be updated. activity

The activity object to be updated. id

The id is a field that either represents the id of the control which caused the event to fire, or the string value passed into the updateActivity method.

Remarks

This event is cancelable:

evnt.cancel = true;

ReminderDialogOpening

This event fires before the Reminder Dialog opens.

Parameters

scheduleInfo

The WebScheduleInfo client-side object. evnt

The event object, which allows you to cancel the event, cancel the postback, or request a postback.

Remarks

This event is cancelable:

evnt.cancel = true;