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.
Unplanned
Last Updated: 18 Jul 2017 12:38 by ADMIN
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
Unplanned
Last Updated: 17 Jul 2017 09:15 by ADMIN
To work this around you can set the EnableColumnGroupsVirtualization to False.

Alternatively you can change the FrozenColumnCount before adding the columns, and reset it once the process is done. For example:

gridTriffDetails.FrozenColumnCount = 0;
 
gridTriffDetails.Columns.Add(newColumn);
gridTriffDetails.Columns.Add(newColumn1);
gridTriffDetails.Columns.Add(newColumn2);
 
gridTriffDetails.FrozenColumnCount = 1;
Completed
Last Updated: 05 Jul 2017 07:15 by ADMIN
Completed
Last Updated: 03 Jul 2017 08:43 by ADMIN

Available in LIB version: 2017.2.703
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