This event is fired when a user resizes an event by top or bottom border dragging.
Namespace: DayPilot.Web.Ui
Assembly: DayPilot (in DayPilot)
Version: 3.5.2.0
Syntax
Visual Basic (Declaration) |
---|
Public Event EventResize As EventResizeEventHandler |
C# |
---|
public event EventResizeEventHandler EventResize |
Visual C++ |
---|
public: event EventResizeEventHandler^ EventResize { void add (EventResizeEventHandler^ value); void remove (EventResizeEventHandler^ value); } |
Remarks
It is an AJAX callback method.
When user starts resizing the event, a shadow outlining the new size appears. When the mouse button is released, this event is fired on the server.
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() and Update(). After calling Update() the events will be updated on the client-side.
When user starts resizing the event, a shadow outlining the new size appears. When the mouse button is released, this event is fired on the server.
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() and Update(). After calling Update() the events will be updated on the client-side.