PanelBarItemFactory
Methods
Add()
Adds a new item to the PanelBar.
RETURNS
Returns a PanelBarItemBuilder with the available configuration options.
Example
Razor
@( Html.Kendo().PanelBar()
.Name("PanelBar")
.Items(items =>
{
items.Add().Text("First Item").Items(firstItemChildren =>
{
firstItemChildren.Add().Text("First Child Item");
});
});