This event is fired when a user clicks on a delete "X" button in the upper right corner of an event.

Namespace: DayPilot.Web.Ui
Assembly:  DayPilot (in DayPilot.dll)
Version: 4.0.1172.0

Syntax

C#
public event EventDeleteEventHandler EventDelete
Visual Basic (Declaration)
Public Event EventDelete As EventDeleteEventHandler
Visual C++
public:
 event EventDeleteEventHandler^ EventDelete {
	void add (EventDeleteEventHandler^ value);
	void remove (EventDeleteEventHandler^ value);
}

Remarks

In the custom event handler you should decide whether the action is allowed. If so, update the persistent data storage (such as a database), call DataBind(). If this event is called using a CallBack, call Update() to redraw the events.

See Also