New to Telerik UI for ASP.NET MVC? Download free 30-day trial

TaskBoardEventBuilder

Methods

ColumnsDataBinding(System.String)

Fired before the TaskBoard binds the columns' data source.

For more information see ColumnsDataBinding event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the columnsDataBinding event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.ColumnsDataBinding("onColumnsDataBinding"))
            )

ColumnsDataBound(System.String)

Fired when the TaskBoard's columns are bound to their data source.

For more information see ColumnsDataBound event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the columnsDataBound event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.ColumnsDataBound("onColumnsDataBound"))
            )

Select(System.String)

Fired when the user selects a card in the TaskBoard.

For more information see Select event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the select event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.Select("onSelect"))
            )

DataBinding(System.String)

Fired before the TaskBoard binds to its data source.

For more information see DataBinding event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the dataBinding event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.DataBinding("onDataBinding"))
            )

DataBound(System.String)

Fired when the TaskBoard is bound to data from its data source.

For more information see DataBound event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the dataBound event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.DataBound("onDataBound"))
            )

DeleteCard(System.String)

Fired when the user deletes a card.

For more information see DeleteCard event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the deleteCard event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.DeleteCard("onDeleteCard"))
            )

DeleteColumn(System.String)

Fired when the user deletes a column.

For more information see DeleteColumn event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the deleteColumn event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.DeleteColumn("onDeleteColumn"))
            )

EditCard(System.String)

Fired when the user edits or creates a card.

For more information see EditCard event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the editCard event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.EditCard("onEditCard"))
            )

EditColumn(System.String)

Fired when the user edits or creates a column.

For more information see EditColumn event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the editColumn event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.EditColumn("onEditColumn"))
            )

Execute(System.String)

Fires when a command is executed.

For more information see Execute event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the execute event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.Execute("onExecute"))
            )

Move(System.String)

Fired when the user moves a card.

For more information see Move event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the move event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.Move("onMove"))
            )

MoveEnd(System.String)

Fired when the user dropped a card in a column.

For more information see MoveEnd event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the moveEnd event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.MoveEnd("onMoveEnd"))
            )

MoveStart(System.String)

Fired when the user started moving a card.

For more information see MoveStart event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the moveStart event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.MoveStart("onMoveStart"))
            )

Change(System.String)

Fired when the user changed the card order or status by dragging.

For more information see Change event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the change event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.Change("onChange"))
            )

SaveCard(System.String)

Fired when the user saves a card.

For more information see SaveCard event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the saveCard event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.SaveCard("onSaveCard"))
            )

SaveColumn(System.String)

Fired when the user saves a column.

For more information see SaveColumn event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the saveColumn event.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Events(e => e.SaveColumn("onSaveColumn"))
            )

In this article
Not finding the help you need?