Unplanned
Last Updated: 27 Feb 2018 16:37 by ADMIN
Completed
Last Updated: 26 Jun 2018 11:04 by ADMIN
Completed
Last Updated: 20 Apr 2018 09:12 by Jan
Unplanned
Last Updated: 13 Mar 2018 12:12 by ADMIN
Declined
Last Updated: 28 Mar 2018 11:49 by ADMIN
The reason for declining the item is that a possible fix for this behavior would practically interfere with the virtualization mechanism of the control. Shortly said, when the columns have their width initially set, RadGridView is aware of the column with the biggest size and performs its calculations based on it. When their size is changed on loading, the control cannot be aware of the size of a column that is not present in the viewport thus, the reported issue is observed. In order this behavior to be modified so, the engine needs to measure an element that is not yet loaded. We cannot commit ourselves to implementing this, as this would affect the virtualization of RadGridView. A possible workaround would be to avoid setting the Width of the columns initially in XAML.
Completed
Last Updated: 23 Nov 2017 12:07 by ADMIN
Available in LIB version 2017.3.1127, it will be also available in the R1 2018 Release.
Unplanned
Last Updated: 13 Sep 2017 13:34 by ADMIN
This is reproducible in a hierarchical scenario. The nested gridview loses its selection when its parent row is scrolled out of the viewport.
Declined
Last Updated: 06 Oct 2017 14:47 by ADMIN
Edit:
We are declining this bug as originally the export options were not meant to respect group properties but only some global GridView properties.
However we will add such option in GridViewDocumentExportOptions class.
You can follow this feature request => 
https://feedback.telerik.com/Project/143/Feedback/Details/229211-gridview-add-option-in-gridviewdocumentexportoptions-to-include-exclude-grouph
Unplanned
Last Updated: 28 Sep 2017 11:30 by ADMIN
Currently, the following workaround can be applied:

private void RadGridView_Loaded(object sender, RoutedEventArgs e)
{
	var gridView = sender as RadGridView;
	foreach (var column in gridView.Columns)
	{
		if (!column.IsResizable)
		{
			Dispatcher.BeginInvoke((Action) (() =>
			{
				var radGridView = column.Parent;
				foreach (var header in radGridView.ChildrenOfType<GridViewHeaderCell>())
				{
					if (header.Column.DisplayIndex == column.DisplayIndex)
					{
						var leftGripper = header.ChildrenOfType<Thumb>().Where(x => x.Name == "PART_LeftHeaderGripper").First();
						{
							leftGripper.Visibility = Visibility.Collapsed;
						}
					}
					else if (header.Column.DisplayIndex == (column.DisplayIndex - 1))
					{
						var rightGripper = header.ChildrenOfType<Thumb>().Where(x => x.Name == "PART_RightHeaderGripper").First();
						{
							rightGripper.Visibility = Visibility.Collapsed;
						}
					}
				}
			}), DispatcherPriority.Render);
		}
	}
}
Completed
Last Updated: 16 Oct 2017 10:44 by ADMIN
Add option in GridViewDocumentExportOptions to include / exclude GroupHeaderRowAggregates.

This will allow users to hide/show group header row aggregates in the exported documents.

Option will be globbally applied - to all group header rows in the RadGridView.
===
From 2017 R3 SP GridViewDocumentExportOptions  adds ShowGroupHeaderRowAggregates bool property.

It can be used like so:

  GridViewDocumentExportOptions options = new GridViewDocumentExportOptions()
            {
                ShowGroupHeaderRowAggregates = true
            };
this.gridView.ExportToWorkbook(options);
Unplanned
Last Updated: 17 Oct 2017 14:17 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Feature Request
0
Currently, you can use only the predefined one - IsEqual, IsNotEqual, etc. Add an option to create operators that execute custom filtering action. Also, add support for modifying the default operators.
Completed
Last Updated: 16 Mar 2018 15:02 by ADMIN
Unplanned
Last Updated: 16 Aug 2017 07:54 by ADMIN
Unplanned
Last Updated: 21 Aug 2017 13:21 by ADMIN
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: 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.
Declined
Last Updated: 28 Mar 2018 11:53 by ADMIN
I am setting the status of the item to Declined as the reported behavior is due to the fact that the RowDetailsVisibilityMode is set to VisibleWhenSelected. The default behavior of RadGridView is to split the merged cell when a row with expanded row details is added. Thus, the reported issue you are is the expected one. If setting the RowDetailsVisibilityMode is removed the control will behave as expected. 
Completed
Last Updated: 03 Jul 2017 08:43 by ADMIN

Available in LIB version: 2017.2.703
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.
Completed
Last Updated: 04 Jun 2018 11:54 by ADMIN
If you set BorderThickness through a custom CellStyle, the left border is overwritten by our code.