Unplanned
Last Updated: 29 Feb 2024 14:03 by David
Created by: David
Comments: 0
Category: PanelBar
Type: Feature Request
1

Hi, Team!

Currently, when the PanelBar component is set to take up a specific percentage of its parent element(and the size of the parent element is also responsive) and the screen is resized, the dimensions of the PanelBar are not properly recalculated and the component causes changes in the page thus breaking the responsive design.

Unplanned
Last Updated: 01 Aug 2023 11:00 by Mansi

Hi Team, 

Currently, there is no designated event that is being fired when selecting an already selected item in the PanelBar component. I would like to have an event that is being fired in such a use case.

In React and jQuery, the PanelBar component seems to be firing an event in such cases:

- React: https://www.telerik.com/kendo-react-ui/components/layout/panelbar/events/

- jQuery: https://demos.telerik.com/kendo-ui/panelbar/events

 

Declined
Last Updated: 03 Jan 2023 07:18 by ADMIN
Right now only one Item can be the currently selected item in a panel bar even if multiple are open. I suggest that we can set multiple selected items (more than one opened panel can have the selected class injected onto the header) 

One possible way this could be achieved is setting the selected attribute to True, and letting the developer deal with toggling the booleans on his end. (As of now, the panel bar will override the selected values as soon as one panel is selected) 
Completed
Last Updated: 08 Apr 2022 06:17 by ADMIN
Created by: ITSAM
Comments: 7
Category: PanelBar
Type: Feature Request
10
Need a handler to prevent opening and closing of kendo panel bar. It is present in tabs but not in panels
Completed
Last Updated: 08 Apr 2022 06:08 by ADMIN
In Panelbar , when we set expandmode set to 'single' it do not toggle the item . it only works with expandmode 'multiple'. 

We should also allow to toggle a panelbar item in 'single' mode 
a use case could be -i want to close all of the items in single mode
Completed
Last Updated: 08 Apr 2022 06:04 by ADMIN
Created by: shoy
Comments: 0
Category: PanelBar
Type: Feature Request
2

Hi,

Please provide the item as a context argument from the PanelBarItemTitle template.

thanks

Completed
Last Updated: 21 Mar 2022 12:31 by ADMIN
Created by: shoy
Comments: 0
Category: PanelBar
Type: Feature Request
1

Hi,

Please provide an option that allows to assign title and content templates via input properties of the PanelBar component itself (much like the TreeView component with 'nodeTemplate' and 'loadMoreButtonTemplate').

thanks

Declined
Last Updated: 30 Jun 2021 07:50 by ADMIN
Created by: Ovidiu
Comments: 1
Category: PanelBar
Type: Feature Request
3
I'm looking at the samples of panel bar for Angular 2, I would like to set the orientation horizontal instead of vertical, I tried using the attribute orientation="horizontal", it does not seem to work, can you please advise ?

Thanx
Declined
Last Updated: 09 Jun 2021 07:39 by ADMIN
Created by: Musashi
Comments: 3
Category: PanelBar
Type: Feature Request
1

An option to set visibility of a panelbar item would be great.

As it is now, if I bind to a collection of PanelBarItemModel items, I can't use title templates, and if I use *ngFor with panelbaritems, I can't set visibility. Especially if the visibility condition is an observable

Duplicated
Last Updated: 14 May 2021 06:46 by ADMIN
Created by: Charu
Comments: 1
Category: PanelBar
Type: Feature Request
1

On state change of panel bar would like to confirm user if they want to navigate and only if user confirms yes then change state. otherwise cancel state change event.

 

Is there any other way to achieve this?

Completed
Last Updated: 01 Apr 2021 07:02 by ADMIN
Created by: Gary
Comments: 1
Category: PanelBar
Type: Feature Request
3
I'd like to be able to create a custom template for the PanelBar control's header (the actual bar portion) kind of like what I can do with the ngb-accordion control (https://ng-bootstrap.github.io/#/components/accordion/examples):

<ngb-accordion [closeOthers]="true">
	<ngb-panel *ngFor="let something of somethings">
		<ng-template ngbPanelTitle>
			Custom header content
		</ng-template>
		<ng-template ngbPanelContent>
			Some custom content
		</ng-template>
	</ngb-panel>
</ngb-accordion>

There's lots of content I would like to be able to include beyond just a simple icons and simple text. I might need links with ties to analytics to track expansion or maybe a "new" and/or "draft" icon positioned to the right of the text to indicate that it's a new item or a draft item, etc.