Fires when a user confirms event text changes (after editing).

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

Syntax

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

Remarks

Editing must be allowed by setting EventClickHandling to Edit.
This event is only fired if EventEditHandling property is set to UserActionHandling.PostBack. Otherwise it is handled on the client-side by JavaScript method specified by EventClickJavaScript property.

See Also