Blazor

Code Examples Upgrade Guide User Guide Demos Support Forums Download
  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class KanbanEvents<TValue>

    Show / Hide Table of Contents

    Class KanbanEvents<TValue>

    Configure event handlers to handle the events with Kanban component.

    Inheritance
    System.Object
    KanbanEvents<TValue>
    Namespace: Syncfusion.Blazor.Kanban
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class KanbanEvents<TValue> : ComponentBase
    Type Parameters
    Name Description
    TValue

    Constructors

    KanbanEvents()

    Declaration
    public KanbanEvents()

    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
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<CardRenderedEventArgs<TValue>>

    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
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<DataBindingEventArgs<TValue>>

    DialogClose

    Event triggers before the dialog closes.

    Declaration
    public EventCallback<DialogCloseEventArgs<TValue>> DialogClose { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<DialogCloseEventArgs<TValue>>

    DialogOpen

    Event triggers before the dialog opens.

    Declaration
    public EventCallback<DialogOpenEventArgs<TValue>> DialogOpen { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<DialogOpenEventArgs<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>>

    OnLoad

    This event allows customization of Kanban properties before rendering.

    Declaration
    public EventCallback<object> OnLoad { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<System.Object>

    QueryCellInfo

    Event triggers before each column of the Kanban rendering on the page.

    Declaration
    public EventCallback<QueryCellInfoEventArgs<TValue>> QueryCellInfo { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<QueryCellInfoEventArgs<TValue>>

    SwimlaneSorting

    Event triggers before swimlane rows rendering on the page.

    Declaration
    public EventCallback<SwimlaneSortEventArgs> SwimlaneSorting { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<SwimlaneSortEventArgs>

    Methods

    OnInitializedAsync()

    Method invoked when the component is ready to start.

    Declaration
    protected override Task OnInitializedAsync()
    Returns
    Type Description
    System.Threading.Tasks.Task

    A System.Threading.Tasks.Task representing any asynchronous operation.

    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved