RadzenDropZoneContainer component.
IComponent
IHandleEvent
IHandleAfterRender
RadzenComponentWithChildren.ChildContent
RadzenComponent.SetParametersAsync
RadzenComponent.OnAfterRenderAsync
RadzenComponent.RaiseContextMenu
RadzenComponent.RaiseMouseEnter
RadzenComponent.AddContextMenu
RadzenComponent.RaiseMouseLeave
RadzenComponent.OnBecameInvisible
RadzenComponent.DefaultCulture
RadzenComponent.IsJSRuntimeAvailable
ComponentBase.OnInitializedAsync
ComponentBase.OnParametersSet
ComponentBase.OnParametersSetAsync
ComponentBase.StateHasChanged
ComponentBase.ShouldRender
ComponentBase.OnAfterRender
ComponentBase.InvokeAsync
ComponentBase.DispatchExceptionAsync
ComponentBase.RendererInfo
ComponentBase.Assets
ComponentBase.AssignedRenderMode
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
public class RadzenDropZoneContainer<TItem> : RadzenComponentWithChildren, IComponent, IHandleEvent, IHandleAfterRender| Name | Description |
|---|---|
| TItem |
RadzenDropZoneContainer component.
public RadzenDropZoneContainer<TItem>()Gets or sets the function that checks if the item can be dropped in specific zone or item.
public Func<RadzenDropZoneItemEventArgs<TItem>, bool> CanDrop { get; set; }
| Type | Description |
|---|---|
| Func<RadzenDropZoneItemEventArgs<TItem>, bool> | Gets or sets the function that checks if the item can be dropped in specific zone or item. |
Gets or sets the data.
public IEnumerable<TItem> Data { get; set; }
| Type | Description |
|---|---|
| IEnumerable<TItem> | Gets or sets the data. |
The event callback raised when an item drag ends.
public EventCallback<RadzenDropZoneItemEventArgs<TItem>> DragEnd { get; set; }
| Type | Description |
|---|---|
| EventCallback<RadzenDropZoneItemEventArgs<TItem>> | The event callback raised when an item drag ends. |
The event callback raised when an item drag starts.
public EventCallback<RadzenDropZoneItemEventArgs<TItem>> DragStart { get; set; }
| Type | Description |
|---|---|
| EventCallback<RadzenDropZoneItemEventArgs<TItem>> | The event callback raised when an item drag starts. |
The event callback raised on item drop.
public EventCallback<RadzenDropZoneItemEventArgs<TItem>> Drop { get; set; }
| Type | Description |
|---|---|
| EventCallback<RadzenDropZoneItemEventArgs<TItem>> | The event callback raised on item drop. |
Gets or sets the row render callback. Use it to set row attributes.
public Action<RadzenDropZoneItemRenderEventArgs<TItem>> ItemRender { get; set; }
| Type | Description |
|---|---|
| Action<RadzenDropZoneItemRenderEventArgs<TItem>> | Gets or sets the row render callback. Use it to set row attributes. |
Gets or sets the selector function for zone items.
public Func<TItem, RadzenDropZone<TItem>, bool> ItemSelector { get; set; }
| Type | Description |
|---|---|
| Func<TItem, RadzenDropZone<TItem>, bool> | Gets or sets the selector function for zone items. |
Gets or sets the template for zone items.
public RenderFragment<TItem> Template { get; set; }
| Type | Description |
|---|---|
| RenderFragment<TItem> | Gets or sets the template for zone items. |