Completed
Last Updated: 17 May 2011 09:20 by Svetlin
If the RadGridView is in multi-select mode, many rows are selected when scrolling is performed by mouse dragging.
Completed
Last Updated: 18 May 2011 04:31 by Svetlin
When the suggest auto-complete mode of GridViewComboBox is enabled, the RadDropDownListEditor does not perform auto-complete operation when the edit mode is enabled by key stroke.
Completed
Last Updated: 24 May 2011 02:29 by Svetlin
In self-referencing hierarchy of RadGridView, the first column that contains the row expander is not sized correctly when the BestFitColumns is performed.
Completed
Last Updated: 13 Feb 2014 08:43 by Svetlin
If you sort a column by performing mouse left button click and open the excel-like filtering dialog, ArgumentOutOfRangeException is thrown.
Completed
Last Updated: 01 Jul 2011 07:47 by Svetlin
Copy and paste of GridViewComboBoxColumn should perform the operation over the display member instead of the value member.
Declined
Last Updated: 20 Apr 2015 10:52 by ADMIN
When RadGridView is in virtual mode, a StackOverflowException occurs if sorting or filtering is performed.
Completed
Last Updated: 20 Jun 2011 04:12 by Svetlin
Created by: Svetlin
Comments: 0
Category: GridView
Type: Bug Report
0
In hierarchical mode, when a filtering cell is edited and expanded row appear, the cell closes its editor.
Completed
Last Updated: 13 Feb 2014 09:01 by Svetlin
BestFitColumn does not calculate the size of the first column in self-referencing appropriately. Also if you perform the operation twice, the expander signs will disappear.
Completed
Last Updated: 13 Feb 2014 09:05 by Svetlin
When you set the data source of the grid to null in self-reference hierarchy, the exception has been thrown.
Completed
Last Updated: 28 Jan 2011 05:33 by Svetlin
When the AddNewBoundRowBeforeEdit property of GridViewTemplate is enabled, the properties of the underline business object are not set, while the GridViewNewRowInfo is edited.
Completed
Last Updated: 07 Dec 2010 05:04 by Svetlin
When you create an expression column in the second level of hierarchy, the expression is not evaluated.
Completed
Last Updated: 30 Nov 2010 05:22 by Svetlin
If you change the Image property of GridRowHeaderCellElement in the ViewCellFormatting event, the layout of the cell is not affected.
Declined
Last Updated: 26 Dec 2014 15:06 by ADMIN
Save\Load functionality of the control should work with ColumnGroupsViewDefinition.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: GridView
Type: Feature Request
0
Replacing the RadTextBoxItem with RadTextBoxElement in the RadGridView editor will provide richer theming capabilities.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
The HeaderText of the RadGridView column should be set to the caption of the DataTable column Caption when it is provided.
Completed
Last Updated: 24 Nov 2011 06:38 by ADMIN
Currently there is SortDirectionArrowPrimitive allowing you to set an arrow for both states, but this way you cannot use custom image for the different sort operations.
Completed
Last Updated: 18 May 2011 02:31 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Feature Request
0
When AllowColumnReorder is false (and grouping is also turned off) dragging operation should not start.
Unplanned
Last Updated: 15 Aug 2017 09:38 by ADMIN
One should be able to create a relation in order to produce the following hierarchy:
  public class MainObject
    {
        public ObservableCollection<LibraryObject> ListOfLibraryObjects { get; set; }
    }
    public class LibraryObject
    {
        public string LibraryName { get; set; }
        public TrajectoryManager TheTrajectoryManager { get; set; }
    }
    public class TrajectoryManager
    {
        public ObservableCollection<TrajectoryData> ListOfTrajectoryData { get; set; }
    }
    public class TrajectoryData
    {
        public string Name { get; set; }
    }

WORKAROUND:
    public class MainObject
    {
        public ObservableCollection<LibraryObject> ListOfLibraryObjects;
    }
    public class LibraryObject
    {
        public string LibraryName { get; set; }
        public ObservableCollection<TrajectoryData> ListOfTrajectoryData { get; set; }
    //    public TrajectoryManager TheTrajectoryManager;
    //}
    //public class TrajectoryManager
    //{
    //    public ObservableCollection<TrajectoryData> ListOfTrajectoryData;
    }
    public class TrajectoryData
    {
        public string Name { get; set; }
    }
Completed
Last Updated: 05 Nov 2013 04:39 by ADMIN
Workaround: add the option and the logic for it in the ContextMenuOpening event
Unplanned
Last Updated: 15 Aug 2017 09:41 by ADMIN
There should be a way to fix the width of certain columns. Their width should remain the same while resizing the grid.