Templates
The PanelBar for ASP.NET MVC supports templates for customizing the appearance of its items.
To customize look and feel of the PanelBar use the Template()
or TemplateId()
configuration options to set a template that will be used for the rendering the PanelBar's items.
The following example demonstrates how to use the TemplateId()
configuration:
<script id="template" type="text/kendo-ui-template">
# if (!item.items) { #
#: item.text #
# } else { #
<b> #: item.text # </b>
# } #
</script>
@(Html.Kendo().PanelBar()
.Name("panelbar")
.TemplateId("template")
.DataSource(source =>
{
source.Read(read => read.Action("Read_TemplateData", "PanelBar"));
})
)