TaskBoardEditableSettingsBuilder

Methods

Form(System.Action)

Parameters

configurator - System.Action<FormBuilder>

Buttons(System.Action)

Defines a list of buttons rendering in the footer pane

Parameters

configurator - System.Action<TaskBoardEditableSettingsButtonFactory>

The action that configures the buttons.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Editable(e => e.Buttons(b => b.Add()))
            )
             

HeaderTemplate(System.String)

Controls the rendering of the header

Parameters

value - System.String

The value that configures the headertemplate.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Editable(e => e.HeaderTemplate("<div class='k-taskboard-pane-header-text'>Editing <strong>#:title#</strong></div>"))
            )
             

HeaderTemplateId(System.String)

Controls the rendering of the header

Parameters

value - System.String

The value that configures the headertemplate.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Editable(e => e.HeaderTemplateId("headerTemplateId"))
            )
             

HeaderTemplateView(System.Web.Mvc.MvcHtmlString)

Controls the rendering of the header

Parameters

value - System.Web.Mvc.MvcHtmlString

The value that configures the headertemplate.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Editable(e => e.HeaderTemplateView(new System.Web.Mvc.MvcHtmlString("<div>#= ColumnName #</div>")))
            )
             

HeaderTemplateHandler(System.String)

Controls the rendering of the header

Parameters

value - System.String

The value that configures the headertemplate.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Editable(e => e.HeaderTemplateHandler("headerTemplateHandler"))
            )
             

HeaderTemplate(Kendo.Mvc.UI.Fluent.TemplateBuilder)

Controls the rendering of the header

Parameters

template - TemplateBuilder<TModel>

A Template component that configures the headertemplate.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Editable(e => e.HeaderTemplate(@Html.Kendo().Template().AddComponent(a => a.TextBox())))
            )