TileLayoutContainerHeaderSettingsBuilder
Methods
Template(System.String)
The template that will be rendered as a header.
Parameters
value - System.String
The value for Template
RETURNS
Returns the current TileLayoutContainerHeaderSettingsBuilder instance.
TemplateId(System.String)
The template that will be rendered as a header.
Parameters
templateId - System.String
The ID of the template element for Template
RETURNS
Returns the current TileLayoutContainerHeaderSettingsBuilder instance.
TemplateView(Microsoft.AspNetCore.Html.IHtmlContent)
The template that will be rendered as a header.
Parameters
templateView - Microsoft.AspNetCore.Html.IHtmlContent
The view that contains the template for Template
RETURNS
Returns the current TileLayoutContainerHeaderSettingsBuilder instance.
TemplateHandler(System.String)
The template that will be rendered as a header.
Parameters
templateHandler - System.String
The handler that returs the template for Template
RETURNS
Returns the current TileLayoutContainerHeaderSettingsBuilder instance.
Template(Kendo.Mvc.UI.Fluent.TemplateBuilder)
The template that will be rendered as a header.
Parameters
template - TemplateBuilder<TModel>
A Template component that configures the template.
RETURNS
Returns the current TileLayoutContainerHeaderSettingsBuilder instance.
Text(System.String)
The text that will be rendered as a header.
Parameters
value - System.String
The value for Text
RETURNS
Returns the current TileLayoutContainerHeaderSettingsBuilder instance.
Example
@(Html.Kendo().TileLayout()
.Name("tilelayout")
.Containers(c => {
c.Add().Header(h => h.Text("Page Views")).BodyTemplateId("views-chart-template");
})
)