19 lines
No EOL
626 B
Text
19 lines
No EOL
626 B
Text
|
|
@using Kreta.Web.Models.EditorTemplates
|
|
@model PanelBarBaseModel
|
|
|
|
@(Html.Kendo().PanelBar()
|
|
.Name(Model.PanelName)
|
|
.ExpandMode(Model.ExpandMode)
|
|
.Animation(animation => animation.Enable(Model.Animation))
|
|
.BindTo(Model.ChildModels, mapping =>
|
|
{
|
|
mapping.For<PanelBarChildModel>(binding => binding.ItemDataBound((panel, childModel) =>
|
|
{
|
|
panel.Text = childModel.PartialViewTitle;
|
|
panel.Template.InlineTemplate = @<text>
|
|
@Html.Partial(childModel.PartialViewName, childModel.GenericPanelBarModel)
|
|
</text>;
|
|
}));
|
|
})
|
|
) |