ASPxClientAppointmentDropEventArgs.operation Property
Provides access to an object that enables you to choose an operation to perform.
Declaration
operation: ASPxClientAppointmentOperation
Property Value
Type | Description |
---|---|
ASPxClientAppointmentOperation | An ASPxClientAppointmentOperation object providing methods to perform the required operation. |
Remarks
Use the following code to prohibit the appointment drag operation on the client side:
<ClientSideEvents AppointmentDrop="function(s, e) {
e.handled=true;
e.operation.Cancel();
}"/>
See Also