If an item is set to expanded="false" (see the "Storage" item in the snippet below) in the PanelBar's tag helper, it displays the "collapse" icon, instead of an "expand" icon:
<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>
<panelbar-item text="Lights">
<items>
<panelbar-item text="Ceiling"></panelbar-item>
<panelbar-item text="Table"></panelbar-item>
<panelbar-item text="Floor"></panelbar-item>
</items>
</panelbar-item>
</items>
</kendo-panelbar>
This is caused by incorrect classes being applied to the item. It should have the "k-panelbar-expand k-i-arrow-60-down" classes, instead it has the "k-panelbar-collapse k-i-arrow-60-up" classes.
"k-i-arrow-60-up" icon is displayed.
"k-i-arrow-60-down" icon is displayed.
When visible
attribute is set to false for a panelbar-item, the item remains visible when the widget is rendered.
<kendo-panelbar name="project">
<items>
<panelbar-item text="Storage" expanded="true">
<items>
<panelbar-item visible="false" text="Kids Storage" ></panelbar-item>
</items>
</panelbar-item>
</items>
</kendo-panelbar>
Adding visible attribute to panelbar-item does not change its visibility.
Adding visible attribute to panelbar-item should change item visibility.
Hi Team
With the latest version of Kendo (Silver Theme), The selected color of a Panelbar was white now it's blackish.
Do you have a quick fix for that?
Many thanks
Giuseppe