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

Events

You can subscribe to all TaskBoard events and then use them to further customize the behavior of the TaskBoard.

The example below demonstrates how to subscribe to the DataBound and the ColumnDataBound events.

    @using Kendo.Mvc.UI

    @(Html.Kendo().TaskBoard()
        .Name("taskBoard")
        // omitted for brevity
        .Events(ev =>
        {
            ev.ColumnsDataBound("onColumnDataBound");
            ev.DataBound("onDataBound");
        })
    )
    function onColumnDataBound(e) {
        console.log("event: ColumnDataBound", e);
    }

    function onDataBound(e) {
        console.log("event: DataBound", e);
    }

Next Steps

See Also

In this article