blazor-devexpress-dot-blazor-7b286177.md
Lists appointment drag & drop processing modes for the Scheduler component.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public enum SchedulerAppointmentDragMode
| Name | Description |
|---|---|
Auto |
Drag & drop operations are processed on the server or client based on the component configuration.
|
| Client |
Drag & drop operations are processed on client.
|
| Server |
Drag & drop operations are processed on the server.
|
The following properties accept/return SchedulerAppointmentDragMode values:
The Scheduler component can process drag & drop operations on the client and server. To improve responsiveness, the component automatically uses client-side processing unless server-side processing is required.
Use the AppointmentDragMode property to specify how to process drag & drop operations:
ServerAll operations are processed on the server side.ClientAll operations are processed on the client side. Note:
AutoAll operations are processed:
The following code snippet sets AppointmentDragMode to Server:
<DxScheduler @bind-StartDate="@StartDate"
DataStorage="@DataStorage"
AppointmentDragMode="SchedulerAppointmentDragMode.Client">
@* ... *@
</DxScheduler>
Footnotes
See Also