Completed
Last Updated: 21 Jun 2017 11:11 by ADMIN
The workaround is to use a RadTabControl and set its IsContentPreserved to True


Available in LIB version: 2017.2.626
Unplanned
Last Updated: 20 Jun 2017 11:33 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Feature Request
0

			
Unplanned
Last Updated: 19 Jun 2017 13:36 by ADMIN
Add a property to control GridView ControlPanelItem visibility.
Unplanned
Last Updated: 15 Jun 2017 13:21 by Jenia
Created by: Jenia
Comments: 3
Category: GridView
Type: Feature Request
0
Will be nice to have this feature. I have a solution from support by replacing " with *. But it's the way search should work. Click on link and go to Wildcard *: Searching for Unknown Strings section.
https://www.howtogeek.com/school/learning-windows-search/lesson4/
Unplanned
Last Updated: 14 Jun 2017 06:50 by Lukas
workaround is to override the OnInitialized of the custom column:

 protected override void OnInitialized(EventArgs e)
        {/* //if XAML assemblies

            Theme theme = StyleManager.GetTheme(this);
            Type themeType = null;
            if (theme != null)
            {
                themeType = theme.GetType();
            }
            this.DefaultStyleKey = new ThemeResourceKey() { ElementType = typeof(Telerik.Windows.Controls.GridViewColumn), ThemeType = themeType };*/
        }
Unplanned
Last Updated: 09 Jun 2017 15:02 by ADMIN
As a temporary workaround, the following custom keyboard command provider can be used:

	public class CustomKeyboardCommandProvider : DefaultKeyboardCommandProvider
	{
		private GridViewDataControl parentGrid;

		public CustomKeyboardCommandProvider(GridViewDataControl grid)
		 : base(grid)
		{
			this.parentGrid = grid;
		}

		public override IEnumerable<ICommand> ProvideCommandsForKey(Key key)
		{
			List<ICommand> commandsToExecute = base.ProvideCommandsForKey(key).ToList();

			if (key == Key.Enter)
			{
				commandsToExecute.Clear();
				commandsToExecute.Add(RadGridViewCommands.CommitEdit);
				commandsToExecute.Add(RadGridViewCommands.BeginEdit);
				commandsToExecute.Add(RadGridViewCommands.MoveDown);
			}

			return commandsToExecute;
		}
	}
Completed
Last Updated: 05 Jun 2017 12:01 by ADMIN
DataFormatString is not respected when exporting RadGridView to .xlsx file and a GridViewDataColumn is bound to a nested property.

Available in LIB version: 2017.2.605
Completed
Last Updated: 01 Jun 2017 10:51 by ADMIN
When an Extended selection is performed by the user, the items programmatically added to the  SelectedItems collection need to be taken in consideration. Currently, they are not  A scenario with a source collection of 10 items  and the item at index 4 being added to the SelectedItems of the control can serve as an example. If the user presses Shift+Down, the expected result would be the items at index 4 and 5 to be selected. Instead, all items until the item at index 5 are selected. The same behavior can be reproduced with Shift+Click as well.


Available in LIB version: 2017.2.605
Completed
Last Updated: 29 May 2017 05:55 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 1
Category: GridView
Type: Bug Report
0

Available in LIB version: 2017.2.529
Completed
Last Updated: 22 May 2017 14:23 by ADMIN
When pasting data to create new rows(which are created in the AddingNewDataItem event), the pasting logic on the existing cells stops working.


Available in LIB version: 2017.2.529
Completed
Last Updated: 18 May 2017 13:10 by ADMIN

Available in LIB version: 2017.2.522
Completed
Last Updated: 15 May 2017 06:49 by ADMIN
Completed
Last Updated: 12 May 2017 14:33 by ADMIN
Completed
Last Updated: 03 May 2017 08:37 by ADMIN
The issue is replicated only when a filtering operation is applied. For a grouping and sorting one it is not. This behavior is replicated in WPF only.
Unplanned
Last Updated: 20 Apr 2017 13:21 by ADMIN
Unplanned
Last Updated: 20 Apr 2017 09:41 by ADMIN
Unplanned
Last Updated: 19 Apr 2017 11:28 by ADMIN
Unplanned
Last Updated: 07 Apr 2017 16:32 by ADMIN
Unplanned
Last Updated: 04 Apr 2017 07:46 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: GridView
Type: Bug Report
0