Skip to main content
All docs
V26.1
  • DxGridModel.DropTargetMode Property

    Specifies the drop position behavior. Applicable only to drag and drop operations initiated externally.

    Namespace: DevExpress.ExpressApp.Blazor.Editors.Models

    Assembly: DevExpress.ExpressApp.Blazor.v26.1.dll

    Declaration

    public GridDropTargetMode DropTargetMode { get; set; }

    Property Value

    Type Description
    GridDropTargetMode

    An enumeration value.

    Available values:

    Name Description Image
    BetweenRows

    The drop position is defined by TargetItem and DropPosition properties.

    Drop rows between rows

    Component

    The drop position is not defined. You need to implement logic in the ItemsDropped event handler to specify where to insert rows.

    Drop rows onto the component

    Remarks

    This member is a wrapper for the DxGrid component’s DxGrid.DropTargetMode member. Refer to its description for more information.

    See Also