New to Telerik UI for ASP.NET MVCStart a 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.

Razor
    @using Kendo.Mvc.UI

    @(Html.Kendo().TaskBoard()
        .Name("taskBoard")
        // omitted for brevity
        .Events(ev =>
        {
            ev.ColumnsDataBound("onColumnDataBound");
            ev.DataBound("onDataBound");
        })
    )

Next Steps

See Also

In this article
Next StepsSee Also
Not finding the help you need?
Contact Support