TaskBoardPreviewPaneSettingsBuilder
Methods
Buttons(System.Action)
Defines a list of buttons rendering in the footer pane.
Parameters
configurator - System.Action<TaskBoardPreviewPaneSettingsButtonFactory>
The action that configures the buttons.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.PreviewPane(p => p.Buttons(b => b.Add()))
)
Template(System.String)
The template rendering of the preview pane.
Parameters
value - System.String
The value that configures the template.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.PreviewPane(p => p.Template("template"))
)
TemplateId(System.String)
The template rendering of the preview pane.
Parameters
value - System.String
The value that configures the template.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.PreviewPane(p => p.TemplateId("templateId"))
)
TemplateView(System.Web.Mvc.MvcHtmlString)
The template rendering of the preview pane.
Parameters
value - System.Web.Mvc.MvcHtmlString
The value that configures the template.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.PreviewPane(p => p.TemplateView(new System.Web.Mvc.MvcHtmlString("<div class='preview-pane-content'>#= CardName #</div>")))
)
TemplateHandler(System.String)
The template rendering of the preview pane.
Parameters
value - System.String
The value that configures the template.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.PreviewPane(p => p.TemplateHandler("templateHandler"))
)
Template(Kendo.Mvc.UI.TemplateBuilder)
The template rendering of the preview pane.
Parameters
template - TemplateBuilder<TModel>
A Template component that configures the template.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.PreviewPane(p => p.Template(Html.Kendo().Template().AddComponent(a => a.TextBox())))
)
HeaderTemplate(System.String)
The template rendering of the header for the preview pane.
Parameters
value - System.String
The value that configures the headertemplate.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.PreviewPane(p => p.HeaderTemplate("template"))
)
HeaderTemplateId(System.String)
The template rendering of the header for the preview pane.
Parameters
value - System.String
The value that configures the headertemplate.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.PreviewPane(p => p.HeaderTemplateId("templateId"))
)
HeaderTemplateView(System.Web.Mvc.MvcHtmlString)
The template rendering of the header for the preview pane.
Parameters
value - System.Web.Mvc.MvcHtmlString
The value that configures the headertemplate.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.PreviewPane(p => p.HeaderTemplateView(new System.Web.Mvc.MvcHtmlString("<div class='header-template'>#= HeaderName #</div>")))
)
HeaderTemplateHandler(System.String)
The template rendering of the header for the preview pane.
Parameters
value - System.String
The value that configures the headertemplate.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.PreviewPane(p => p.HeaderTemplateHandler("headerTemplateHandler"))
)
HeaderTemplate(Kendo.Mvc.UI.TemplateBuilder)
The template rendering of the header for the preview pane.
Parameters
template - TemplateBuilder<TModel>
A Template component that configures the headertemplate.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.PreviewPane(p => p.HeaderTemplate(Html.Kendo().Template().AddComponent(a => a.TextBox())))
)