I am trying to put in a panel bar that is collapsed by default. I took the demo and changed the expanded value to false.
<
kendo-panelbar
name
=
"project"
>
<
items
>
<
panelbar-item
text
=
"Storage"
expanded
=
"false"
>
<
items
>
<
panelbar-item
text
=
"Wall Shelving"
></
panelbar-item
>
<
panelbar-item
text
=
"Floor Shelving"
></
panelbar-item
>
<
panelbar-item
text
=
"Kids Storag"
></
panelbar-item
>
</
items
>
</
panelbar-item
>
</
items
>
</
kendo-panelbar
>
The panel bar items are collapsed but the icon is set to "k-i-arrow-60-up" so it looks like it can still be collapsed.
I am also wanting to put content other than <panelbar-item> in there, so I was going to use the <content> tag instead f the <items> tag an then put a treeview in there. When I use the <content> tag, the content is always show, so I must be using this incorrectly. I know I can do it with the html helpers, but I like how the tag helpers look. Can I still do this with the tag helpers?