Unplanned
Last Updated: 13 Mar 2018 12:12 by ADMIN
Unplanned
Last Updated: 14 Sep 2018 14:01 by ADMIN
ADMIN
Created by: Vladimir Stoyanov
Comments: 0
Category: GridView
Type: Feature Request
2

			
Unplanned
Last Updated: 28 Feb 2018 15:38 by ADMIN
Unplanned
Last Updated: 27 Feb 2018 16:37 by ADMIN
Unplanned
Last Updated: 09 Feb 2018 14:19 by Vladimir
If you have a RadComboBox inside a ControlPanelItem, when you open the RadComboBox's dropdown and select an item, the ControlPanelItem is not closed. As a workaround, you can manually capture the mouse. Please check the attached project.
Unplanned
Last Updated: 23 Feb 2018 07:43 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: GridView
Type: Feature Request
1

			
Unplanned
Last Updated: 29 Jan 2018 15:28 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Feature Request
1

			
Unplanned
Last Updated: 04 May 2018 12:28 by ADMIN
Unplanned
Last Updated: 20 Dec 2017 17:08 by ADMIN
Currently, RadGridView's data engine relies on TypeDescriptor.GetProperties, when resolving the set of properties accessible through a certain type. Apparently, this API hides the properteis from the interface, as they are not accessible throught the concrete type.
Unplanned
Last Updated: 09 Feb 2018 16:39 by ITC
The unconfirmed inputs of filter row editors are being destroyed together with the editor itself in column-visualized GridViews. There's an easy solution for it (store what was in there and restore upon recreation) and we're waiting for an official fix for this "expected behaviour" since three+ years.
Unplanned
Last Updated: 28 Nov 2017 08:52 by ADMIN
ADMIN
Created by: Kalin
Comments: 0
Category: GridView
Type: Feature Request
0
Similar to the one in RadPivotGrid:
https://docs.telerik.com/devtools/wpf/controls/radpivotgrid/features/localdatasourceprovider/serialization

And here is an online demo:
https://demos.telerik.com/silverlight/#PivotGrid/Serialization
Unplanned
Last Updated: 27 Oct 2017 13:44 by ADMIN
When setting the VirtualItemCount on refreshing the data source, the scrollbar jumps to the top. If the VirtualItemCount is initially set, the behavior is not reproduced. The workaround is to use the scrolling mechanism of the control and scroll back to the desired item.
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.
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);
		}
	}
}
Unplanned
Last Updated: 29 Sep 2017 13:08 by ADMIN
Same as the one available in Excel. Please check the attached screenshot.
Unplanned
Last Updated: 19 Sep 2017 12:24 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: GridView
Type: Feature Request
7

			
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.