Completed
Last Updated: 09 Mar 2022 09:45 by ADMIN
Release LIB 2022.1.314 (14 Mar 2022)
Stenly
Created on: 03 Mar 2022 10:00
Category: PanelBar
Type: Bug Report
0
PanelBar: Setting a RadGridView for PanelBarItem's content does not display all of its rows when GroupRenderMode is Flat

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>

0 comments