Class RowDropSettings
Gets or sets an object that indicates whether to customize the drag and drop behavior of the grid rows.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript.Models
Assembly: Syncfusion.EJ.dll
Syntax
public class RowDropSettings : EJTagHelper
Constructors
RowDropSettings()
Declaration
public RowDropSettings()
Properties
DragBehavior
Gets or sets a value that indicates the drag behavior for row drag and drop.
Declaration
[JsonConverter(typeof(StringEnumConverter))]
[JsonProperty("dragBehavior")]
public DragBehavior DragBehavior { get; set; }
Property Value
Type | Description |
---|---|
DragBehavior |
DragMapper
This helps in mapping server-side action when rows are dragged from Grid.
Declaration
[JsonProperty("dragMapper")]
public string DragMapper { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DropMapper
This helps in mapping server-side action when rows are dropped in Grid.
Declaration
[JsonProperty("dropMapper")]
public string DropMapper { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DropTargetID
This specifies the grid to drop the grid rows only at particular target element.
Declaration
[JsonProperty("dropTargetID")]
public string DropTargetID { get; set; }
Property Value
Type | Description |
---|---|
System.String |