Unplanned
Last Updated: 04 Sep 2017 16:17 by ADMIN
Currently VQCV caches all the items once they are loaded. In this way the data virtaulization functions only through the first bottom-most item scrolling. The idea behind this item is to make this behavior optional by introducing an alternative mode.
Declined
Last Updated: 16 Oct 2017 13:22 by ADMIN
I have a RadGridView and bind its ItemsSource and its SelectedItem to properties of the ViewModel (DataContext). When the ViewModel is created, the property bound to ItemsSource is filled and the property bound to SelectedItem is set to one of the items in the collection.

However, when the GridView is displayed, the property is first set to null and then set to the first item in the collection. I assume that the binding of the SelectedItem is evaluated before the binding of the ItemsSource, so the grid is empty and the desired item can't be selected. Is there any way to influence the order, in which the binding are evaluated? Or is there any other way to avoid that the SelectedItem is changed?

A similar issue is described here: http://www.telerik.com/forums/selecteditem-binding-issue
Unfortunately, I couldn't to find the support ticket mentioned in this thread.
Unplanned
Last Updated: 30 Aug 2017 18:54 by ADMIN
workaround:
public MainWindow()
{
    InitializeComponent();

    this.grid.Loaded += grid_Loaded;
}

void grid_Loaded(object sender, RoutedEventArgs e)
{
    this.grid.ChildrenOfType<Grid>().FirstOrDefault(x => x.Name == "PART_OuterGrid").RowDefinitions[1].Height = GridLength.Auto;

    var cells = this.grid.ChildrenOfType<GridViewHeaderCell>();
    foreach (GridViewHeaderCell cell in cells)
    {
        cell.ChildrenOfType<Grid>().FirstOrDefault(x => x.Name == "PART_OuterGrid").RowDefinitions[1].Height = GridLength.Auto;
    }
}
Completed
Last Updated: 13 Nov 2023 11:53 by ADMIN
Release R3 2023 SP1
This happens in the following scenarios:

1. The FilterMemberPath points to the Date property of a DateTime one.
2. The column name contains "[]" square brackets.
Declined
Last Updated: 26 Aug 2019 09:39 by Petar
When we make frozen column width bigger than the window will hide other columns. Scrolling is applied only to not frozen columns. So we can't scroll to see other columns.

A possible workaround is to set MaxWidth property of the column.
Completed
Last Updated: 25 May 2023 13:29 by ADMIN
The issue is reproduced only when the items in the source collection have properties with duplicated values and they are sorted before the selection is processed. If the property values are unique or the SelectionMode is set to Multiple, the selection works as expected both with sorted and unsorted data. The workaround is to use either Multiple SelectionMode, or Cell/Mixed SelectionUnit.
Unplanned
Last Updated: 21 Aug 2017 13:21 by ADMIN
Unplanned
Last Updated: 16 Aug 2017 07:54 by ADMIN
Won't Fix
Last Updated: 08 Oct 2018 14:54 by ADMIN
For the time being, an appropriate converter should be used for the bindings.
Unplanned
Last Updated: 08 Aug 2017 14:47 by ADMIN
Currently, if the value set to the RowHeight of RadGridView is lower than the Height of the highest cell(or the Height of a Hierarchy defined), it will not be respected. Provide an option the RowHeight to have greater weight than the height of the cell.
Declined
Last Updated: 18 Sep 2017 12:25 by ADMIN
Created by: jen
Comments: 2
Category: GridView
Type: Feature Request
1
Add a TextAlignment property to the GridView's AggregateFunctions to set the alignment of the resulting text. 
Apply to both Caption and FormattedValue simultaneously. 
This way we won't have to make custom ItemTemplates for the AggregateResultsList in each footer, when using AggregateFunctions out-of-the-box.
Completed
Last Updated: 18 Jun 2018 08:20 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 1
Category: GridView
Type: Bug Report
1

			
Declined
Last Updated: 24 Oct 2017 13:37 by ADMIN
In an application, I bind a DataTable with many rows to a RadGridView. As soon as, the datatable is binded, I see the memory needed by the application growing. The problem is that the binding is done each time the content of the DataTable is changing. It seems that the memory is never cleared and keep growing until a MemoryException is thrown. This does not appear with a WPF standard GridView. Do you know why ?
Completed
Last Updated: 14 Oct 2019 10:02 by ADMIN
Release LIB 2019.3.1014
In Office2016 when we increase the DPI of the Windows a left border in the header of column disappears. As a workaround you can set the Width property of all columns.
Completed
Last Updated: 11 Aug 2017 13:18 by ADMIN
Current workaround for the affected themes - Define the following control template for the GridViewCheckBox:

			<ControlTemplate x:Key="GridViewCheckBoxTemplate" TargetType="telerik:GridViewCheckBox">
				<Grid HorizontalAlignment="Left" VerticalAlignment="Center" Width="13" Height="13">
					<VisualStateManager.VisualStateGroups>
						<VisualStateGroup x:Name="CheckStates">
							<VisualState x:Name="Checked">
								<Storyboard>
									<ObjectAnimationUsingKeyFrames BeginTime="0" Duration="0" Storyboard.TargetName="CheckedPath" Storyboard.TargetProperty="(UIElement.Visibility)">
										<DiscreteObjectKeyFrame KeyTime="0">
											<DiscreteObjectKeyFrame.Value>
												<Visibility>Visible</Visibility>
											</DiscreteObjectKeyFrame.Value>
										</DiscreteObjectKeyFrame>
									</ObjectAnimationUsingKeyFrames>
								</Storyboard>
							</VisualState>
							<VisualState x:Name="Unchecked"/>
							<VisualState x:Name="Indeterminate">
								<Storyboard>
									<ObjectAnimationUsingKeyFrames BeginTime="0" Duration="0" Storyboard.TargetName="IndeterminatePath" Storyboard.TargetProperty="(UIElement.Visibility)">
										<DiscreteObjectKeyFrame KeyTime="0">
											<DiscreteObjectKeyFrame.Value>
												<Visibility>Visible</Visibility>
											</DiscreteObjectKeyFrame.Value>
										</DiscreteObjectKeyFrame>
									</ObjectAnimationUsingKeyFrames>
								</Storyboard>
							</VisualState>
						</VisualStateGroup>
					</VisualStateManager.VisualStateGroups>
					<Grid Background="Transparent">
						<Border
                        BorderBrush="{TemplateBinding BorderBrush}"
                        Background="{TemplateBinding Background}"
                        BorderThickness="{TemplateBinding BorderThickness}"
                        CornerRadius="{telerik:Office2016Resource ResourceKey=CornerRadius}"/>
						<Border x:Name="IndeterminatePath"
                        Width="9"
                        Height="9"
                        VerticalAlignment="Center"
                        HorizontalAlignment="Center"
                        Background="{telerik:Office2016Resource ResourceKey=IconBrush}"
                        Visibility="Collapsed"/>
						<TextBlock x:Name="CheckedPath"
                        HorizontalAlignment="Center"
                        VerticalAlignment="Center"
                        FontSize="13"
                        FontWeight="Normal"
                        FontStyle="Normal"
                        Foreground="{TemplateBinding Foreground}"
                        FontFamily="{StaticResource TelerikWebUI}"
                        telerik:GlyphAdorner.ShowGlyphInDesignTime="True"
                        Opacity="1"
                        Margin="-1 0 0 0"
                        Visibility="Collapsed">
                    <Run Text="{StaticResource GlyphCheck}"/>
						</TextBlock>
					</Grid>
				</Grid>
			</ControlTemplate>
			<Style  TargetType="telerik:GridViewCheckBox" BasedOn="{StaticResource GridViewCheckBoxStyle}">
				<Setter Property="Template" Value="{StaticResource GridViewCheckBoxTemplate}"/>
			</Style>

Fix available in LIB version 2017.2.814.
Completed
Last Updated: 17 Jul 2017 12:08 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: GridView
Type: Feature Request
0

Available in LIB version: 2017.2.724
Completed
Last Updated: 20 Mar 2018 16:27 by ADMIN
Available in LIB version: 2017.2.710