Unplanned
Last Updated: 15 Aug 2017 08:31 by ADMIN
Created by: Sam
Comments: 2
Category: GridView
Type: Feature Request
5
By default, the RadGridView will expand its rows to fit whatever the size of the text content. If you have a large amount of text with newlines, it essentially renders the grid unusable in this state.

The thread http://www.telerik.com/forums/limit-row-height suggests two workaround: 1) using a converter to remove newlines- this is a bad solution because it means the binding on the column must be one-way. 2) Applying styling to the grid's textblock- also not great because its non-obvious and requires a lot of boilerplate.

My suggestion is two properties on the RadGridView: MaxRowHeight and MultilineRowContentBehavior. This second property would determine what happens when a row has multiline content and would take an enumeration: SizeHeightToContent- the current behavior. SingleLineExpandOnEdit- when displaying, shows only a single line of the multiline content. When editing, expands the TextBox to fit the content. SingleLine- displays and edits the content in a single line.
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 };*/
        }
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: 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: 21 Nov 2018 11:28 by ADMIN

The fix for this issue will be available with the next LIB (version 2018.3.1126) expected on Monday, November 26.
			
Unplanned
Last Updated: 03 Nov 2017 09:55 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: GridView
Type: Feature Request
2

			
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
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/
Declined
Last Updated: 16 Aug 2018 14:01 by ADMIN
ADMIN
Created by: Stefan
Comments: 1
Category: GridView
Type: Feature Request
0

			
Unplanned
Last Updated: 19 Jul 2018 15:29 by Michael
ADMIN
Created by: Ivan Ivanov
Comments: 5
Category: GridView
Type: Feature Request
4

			
Won't Fix
Last Updated: 21 Jun 2018 14:50 by ADMIN
Unplanned
Last Updated: 07 Nov 2017 09:32 by Simon
ADMIN
Created by: Stefan Nenchev
Comments: 1
Category: GridView
Type: Feature Request
2

			
Unplanned
Last Updated: 06 Mar 2018 16:22 by ADMIN
Completed
Last Updated: 16 Oct 2017 10:43 by ADMIN
Currently, the aggregate results in the GroupHeaderRow are not aligned according to the columns whose value they summarize. We can introduce such functionality which will require modifying the control template of the GroupHeaderRow.

Completed in R3 2017.
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: 06 Mar 2018 16:20 by ADMIN
Completed
Last Updated: 01 Feb 2019 13:36 by ADMIN