TaskBoardColumnItemBuilder

Methods

Text(System.String)

Sets the Column's Text.

Parameters

value - System.String

The value that configures the text for the column.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Columns(c =>
                    {
                        c.Add().Text("To-do");
                    })
            )
             

Status(System.String)

Sets the Column's Status.

Parameters

value - System.String

The value that configures the status for the column.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Columns(c =>
                    {
                        c.Add().Status("todo");
                    })
            )
             
In this article
MethodsText(System.String)Status(System.String)
Not finding the help you need?
Contact Support