PanelBarComponent
Represents the Kendo UI PanelBar component for Angular.
Selector
kendo-panelbar
Export Name
Accessible in templates as #kendoPanelBarInstance="kendoPanelbar"
Inputs
Name | Type | Default | Description |
---|---|---|---|
animate |
|
Sets the animate state of the PanelBar (see example). | |
expandMode |
|
Sets the expand mode of the PanelBar through the The available modes are:
Expands more than one item at a time. Items can also be toggled.
The expanded area occupies the entire height of the PanelBar. Requires you to set the | |
height |
|
Sets the height of the component when the | |
items |
|
Sets the items of the PanelBar as an array of | |
keepItemContent |
|
When set to | |
selectable |
|
Allows the PanelBar to modify the selected state of the items. |
Events
Name | Type | Description |
---|---|---|
collapse |
|
Fires when an item is about to be collapsed. (see example) This event is preventable. If you cancel it, the item will remain expanded. |
expand |
|
Fires when an item is about to be expanded. (see example) This event is preventable. If you cancel it, the item will remain collapsed. |
itemClick |
|
Fires when the user clicks an item (see example). |
select |
|
Fires when an item is about to be selected. (see example) This event is preventable. If you cancel it, the item will not be selected. |
stateChange |
|
Fires each time the user interacts with a PanelBar item (see example). The event data contains a collection of all items that are modified. |