New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Events
Updated over 6 months ago
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");
})
)