TaskBoardColumnItemBuilder
Methods
Text(System.String)
Sets the Column's Text.
Parameters
value - System.String
The value that configures the text for the column.
Example
@(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
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Columns(c =>
{
c.Add().Status("todo");
})
)