Skip to main content
All docs
V25.1
  • IGrid.DropTargetMode Property

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

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(GridDropTargetMode.BetweenRows)]
    GridDropTargetMode DropTargetMode { get; set; }

    Property Value

    Type Default Description
    GridDropTargetMode BetweenRows

    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

    Refer to the DropTargetMode property description for more information and an example.

    See Also