|
Server-side Event Arguments
|
| |
|
<%@ Register TagPrefix="osd" Namespace="OboutInc.Scheduler" Assembly="obout_Scheduler_NET" %>
SchedulerBeforeCreateEventArg
CreatedEvent
|
Gets or sets the event which will be created.
eventarg.CreatedEvent.Subject = "Get plan done";
|
CreateEventCancel
|
Set to true if you want to cancel event creating action.
eventarg.CreateEventCancel = true;
|
|
|
|
|
SchedulerBeforeUpdateEventArg
OriginalEvent
|
Gets the orginal event which will be overwritten by UpdatedEvent.
Any changes made to OriginalEvent will be discarded from updating to database.
eventarg.OriginalEvent.Subject = "Get plan done";
|
UpdatedEvent
|
Gets or sets the event which will be updated.
eventarg.UpdatedEvent.Subject = "Get plan done";
|
UpdateEventCancel
|
Set to true if you want to cancel event updating action.
eventarg.UpdateEventCancel = true;
|
|
|
|
|
SchedulerBeforeDeleteEventArg
DeletedEvent
|
Gets or sets the event which will be deleted.
|
DeleteEventCancel
|
Set to true if you want to cancel event deleting action.
eventarg.DeleteEventCancel = true;
|
|
|
|
|
SchedulerCreateEventArg
CreateSucceed
|
Return bool value which indicates whether the event was successfully created.
|
CreatedEvent
|
Gets the event which has been created.
|
|
|
|
|
SchedulerUpdateEventArg
UpdateSucceed
|
Return bool value which indicates whether the event was successfully updated.
|
UpdatedEvent
|
Gets the event which has been updated.
|
|
|
|
|
SchedulerDeleteEventArg
DeleteSucceed
|
Return bool value which indicates whether the event was successfully deleted.
|
DeletedEvent
|
Gets the event which has been deleted.
|
|
|
|
|
| "The components Obout has are very cool ... keep up the good work" |
Barry Cedergren |
|
| |
|