TaskBoardEventBuilder

Methods

ColumnsDataBinding(System.String)

Defines the handler of the ColumnsDataBinding client-side event. 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

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

ColumnsDataBound(System.String)

Defines the handler of the ColumnsDataBound client-side event. 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

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

Select(System.String)

Defines the handler of the Select client-side event. 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

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

DataBinding(System.String)

Defines the handler of the DataBinding client-side event. 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

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

DataBound(System.String)

Defines the handler of the DataBound client-side event. 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

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

DeleteCard(System.String)

Defines the handler of the DeleteCard client-side event. 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

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

DeleteColumn(System.String)

Defines the handler of the DeleteColumn client-side event. 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

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

EditCard(System.String)

Defines the handler of the EditCard client-side event. 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

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

EditColumn(System.String)

Defines the handler of the EditColumn client-side event. 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

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

Execute(System.String)

Defines the handler of the Execute client-side event. 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

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

Move(System.String)

Defines the handler of the Move client-side event. 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

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

MoveEnd(System.String)

Defines the handler of the MoveEnd client-side event. 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

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

MoveStart(System.String)

Defines the handler of the MoveStart client-side event. 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

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

Change(System.String)

Defines the handler of the Change client-side event. 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

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

SaveCard(System.String)

Defines the handler of the SaveCard client-side event. 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

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

SaveColumn(System.String)

Defines the handler of the SaveColumn client-side event. 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

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