Skip to main content
All docs
V25.1
  • DxSchedulerFormSettings.AllowDrag Property

    Specifies whether users can drag the extended (pop-up) appointment form.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(false)]
    [Parameter]
    public bool AllowDrag { get; set; }

    Property Value

    Type Default Description
    Boolean false

    true to enable dragging; otherwise, false.

    Remarks

    Set the AllowDrag property to true to allow users drag the appointment form to a new position.

    <DxScheduler StartDate="DateTime.Today"
                 DataStorage="DataStorage">
        <Views>
            <DxSchedulerDayView ShowWorkTimeOnly="true" />
        </Views>
        <PopupSettings>
            <DxSchedulerFormSettings AllowDrag="true" />
        </PopupSettings>
    </DxScheduler>
    
    See Also