Class GridRowDropEventArgs<TItem>
The class that describes the event arguments to the grid row drop event.
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class GridRowDropEventArgs<TItem> : EventArgs
Type Parameters
TItem
|
Constructors
GridRowDropEventArgs()
Declaration
public GridRowDropEventArgs()
Properties
DestinationComponentId
The Id of the component over which the item is dropped.
Declaration
public string DestinationComponentId { get; set; }
Property Value
System.String
|
DestinationGrid
Defines the Grid reference where item is dropped. Useful when dragging between grids.
Declaration
public TelerikGrid<TItem> DestinationGrid { get; set; }
Property Value
TelerikGrid<TItem>
|
DestinationIndex
Defines the destination index inside the component over which the item is dropped. Index is in a format definend by the destination component.
Declaration
public string DestinationIndex { get; set; }
Property Value
System.String
|
DestinationItem
Defines the destination item over which the row was dropped.
Declaration
public TItem DestinationItem { get; set; }
Property Value
TItem
|
DropPosition
Defines the drop position GridRowDropPosition. Supported values are Before and After.
Declaration
public GridRowDropPosition DropPosition { get; set; }
Property Value
GridRowDropPosition
|
Item
Defines the dropped row item.
Declaration
public TItem Item { get; set; }
Property Value
TItem
|
Items
A collection of all dragged items.
Declaration
public IEnumerable<TItem> Items { get; set; }
Property Value
System.Collections.Generic.IEnumerable<TItem>
|