Class KanbanEvents<TValue>
Configure event handlers to handle the events with Kanban component
Inheritance
System.Object
Syncfusion.Blazor.SfBaseComponent
KanbanEvents<TValue>
Assembly: Syncfusion.Blazor.dll
Syntax
public class KanbanEvents<TValue> : SfBaseComponent
Type Parameters
Constructors
KanbanEvents()
Declaration
Properties
ActionBegin
Event triggers at the beginning of every Kanban action.
Declaration
public EventCallback<ActionEventArgs<TValue>> ActionBegin { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<ActionEventArgs<TValue>> |
|
ActionComplete
Event triggers on successful completion of the Kanban actions.
Declaration
public EventCallback<ActionEventArgs<TValue>> ActionComplete { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<ActionEventArgs<TValue>> |
|
ActionFailure
Event triggers when a Kanban action gets failed or interrupted and it will return an error information.
Declaration
public EventCallback<ActionEventArgs<TValue>> ActionFailure { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<ActionEventArgs<TValue>> |
|
CardClick
Event triggers on single-clicking the Kanban cards.
Declaration
public EventCallback<CardClickEventArgs<TValue>> CardClick { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<CardClickEventArgs<TValue>> |
|
CardDoubleClick
Event triggers on double-clicking the Kanban cards.
Declaration
public EventCallback<CardClickEventArgs<TValue>> CardDoubleClick { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<CardClickEventArgs<TValue>> |
|
CardRendered
Event triggers before each card of the Kanban rendering on the page.
Declaration
public EventCallback<CardRenderedEventArgs<TValue>> CardRendered { get; set; }
Property Value
Created
Event triggers after the kanban component is created.
Declaration
public EventCallback<object> Created { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
|
DataBinding
Event triggers before the data binds to the Kanban.
Declaration
public EventCallback<DataBindingEventArgs<TValue>> DataBinding { get; set; }
Property Value
DataBound
Event triggers once the event data is bound to the Kanban.
Declaration
public EventCallback<DataBoundEventArgs<TValue>> DataBound { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<DataBoundEventArgs<TValue>> |
|
DialogClose
Event triggers before the dialog closes.
Declaration
public EventCallback<DialogCloseEventArgs<TValue>> DialogClose { get; set; }
Property Value
DialogOpen
Event triggers before the dialog opens.
Declaration
public EventCallback<DialogOpenEventArgs<TValue>> DialogOpen { get; set; }
Property Value
Drag
Event triggers when the card is dragging to another stage or other swimlane.
Declaration
public EventCallback<DragEventArgs<TValue>> Drag { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<DragEventArgs<TValue>> |
|
DragStart
Event triggers when the card drag actions start.
Declaration
public EventCallback<DragEventArgs<TValue>> DragStart { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<DragEventArgs<TValue>> |
|
DragStop
Event triggers when the card drag actions stop.
Declaration
public EventCallback<DragEventArgs<TValue>> DragStop { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<DragEventArgs<TValue>> |
|
QueryCellInfo
Event triggers before each column of the Kanban rendering on the page.
Declaration
public EventCallback<QueryCellInfoEventArgs<TValue>> QueryCellInfo { get; set; }
Property Value
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides
Syncfusion.Blazor.SfBaseComponent.OnInitializedAsync()