Completed
Last Updated: 09 Mar 2022 09:45 by ADMIN
Release LIB 2022.1.314 (14 Mar 2022)

Placing the RadGridView control inside a PanelBarItem element does not display all of its rows when the GroupRenderMode is Flat.

A workaround for this is to place the RadGridView element inside a Grid layout and create a new RowDefinition with Height="Auto"

<telerik:RadPanelBarItem>
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
        </Grid.RowDefinitions>
        <telerik:RadGridView/>
    </Grid>
</telerik:RadPanelBarItem>

Completed
Last Updated: 07 Feb 2022 08:02 by ADMIN
Release LIB 2022.1.207 (7 Feb 2022)

Setting a RadGridView element instance as content for a RadPanelBarItem, causes the RadGridView to not show all of its columns.

As a workaround to this, you could set the IsScrollViewerInsideItemsEnabled property of the RadPanelBar element, to True, and you could control the expanded length of the PanelBarItem which holds the RadGridView instance. This could be done by utilizing the ExpandedLength property.

Completed
Last Updated: 01 Nov 2019 14:38 by ADMIN
Release LIB 2019.3.1104 (11/04/2019)
When the RadPanelBarItem is expanded the arrow in its header is not consistent across themes. We should make sure that the arrow points in the same direction in all themes. 
Declined
Last Updated: 04 Nov 2019 11:28 by ADMIN
Completed
Last Updated: 04 Jun 2018 19:29 by Anthony
When a control is nested in a RadPanelItem, it is wrapped in another RadPanelBarItem. The DataContext of the second level item is not inherited correctly. As a workaround, you can bind directly to the element which holds the DataContext with an ElementName binding. 
Unplanned
Last Updated: 03 Jan 2017 21:10 by Manthravadi
When an level 2 RadPanelBarItem is selected initially it is stretched. Pressing the Enter key will resize it so that its children fit. 

As a workaround you can subscribe for the PreviewKeyDown of RadPanelBar and handle the event if the item should not be collapsed.

private void OnPreviewKeyDown(object sender, KeyEventArgs e)
{
    var panelBarItem = sender as RadPanelBarItem;
    if (panelBarItem != null && panelBarItem.Level == 2 && e.Key == Key.Enter)
    {
        e.Handled = true;
    }
}
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
When using the new DragDrop logic in the RadPanelBar control, the MouaseOver state of a dragged item isn't cleared on drop. This is why as soon as you move the mouse over another item and start dragging it, you get two PanelBarItems in MouseOver state in the PanelBar.
Declined
Last Updated: 08 Nov 2016 13:05 by ADMIN
PanelBar: A custom template can not be set to a PanelBarItem, using a ControlTemplate

DECLINED: This issue is not reproducible with 2016 R3 official release.
Declined
Last Updated: 08 Nov 2016 13:06 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: PanelBar
Type: Bug Report
3
Cannot dynamically change the theme of the control.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: PanelBar
Type: Bug Report
3
Implement IsExpandOnDblClickEnabled logic
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
Exception is thrown in the designer when threre are many items in the PanelBar control.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
ExpandAll/Collapse issues, Child RadPanelbarItem is resized incorecctly
Declined
Last Updated: 08 Sep 2016 07:55 by ADMIN
Second level items cannot be styled to look like first level items.

DECLINED: SecondLevelItemsStyledLikeTopLevelItems SDK sample showing approach to styling PanelBar with more than two levels of PanelBarItems is available since R3 2016 Official Release.
https://github.com/telerik/xaml-sdk/tree/master/PanelBar
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
PanelBarItem with no Items is initially expanded when its IsExpanded property is data bound
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
The IsTabStop is set to false in all RadPanelBarItems and set to true in the textboxes in the Items of the PanelBarItems. When tab navigating the RadPanelBarItems get focused, in Silverlight they don`t.
Won't Fix
Last Updated: 25 Oct 2018 14:07 by ADMIN
When using an ItemContainerStyle on the second(non-root) BarItems, the Background doesn`t apply
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
When the RadPanelBar is oriented Horizontally , The ScrollViewer does not work when the mouse wheel button is used.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
If the RadPanelBar Orientation is Horizontal, a RadHtmlPlaceHolder cannot be displayed inside a RadPanelBarItem
Unplanned
Last Updated: 05 Jan 2017 11:22 by jen
Update the ExpandMode property to allow zero, one or zero, one ,and multiple expanded items.
1 2