Completed
Last Updated: 12 Dec 2015 07:22 by ADMIN
1. Load the ControlDefault theme in Visual Style Builder
2. Edit the cell style and try to disable the cell border when RadGridView is not focused and the HideSelection property is set to true.
3. You cannot because the HotTracking property is not updated correctly for grid cells.

Workaround: 
void radGridView1_CellFormatting(object sender, CellFormattingEventArgs e)
{
    if (e.CellElement.IsCurrent && !e.CellElement.RowElement.HotTracking)
    {
        e.CellElement.DrawBorder = false;
        e.CellElement.DrawFill = false;
    }
    else
    {
        e.CellElement.ResetValue(LightVisualElement.DrawFillProperty, ValueResetFlags.Local);
        e.CellElement.ResetValue(LightVisualElement.DrawBorderProperty, ValueResetFlags.Local);
    }
}
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: GridView
Type: Feature Request
0
You should be able to bind GridViewColorColumn to a text column.
Declined
Last Updated: 16 May 2019 08:17 by ADMIN
1. Create a new project and setup hierarchy
2. Add a large number of rows as child rows to the last row at first level
3. Run the project and try to expand the last row
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: 21 Nov 2017 13:31 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: GridView
Type: Feature Request
0
The GridViewBrowseColumn's editor could have two modes - OpenFileDialog and FolderBrowserDialog.
Completed
Last Updated: 23 Nov 2011 05:01 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
0
There is a bug regarding the filtering of the grid, in the GridViewComboBoxColumn.
The filtering result displays wrong value.  
The bug accurse when:
   - Select a value form a GridViewComboBoxColumn.
   - Clear Filtering of the grid.
   - write a new value in the filtering GridViewComboBoxColumn cell, before living the cell.
The grid is filtered with the previous selected value.  
Note: the bug accurse only when the ReadOnly Property of column is off.
Completed
Last Updated: 21 Nov 2011 03:47 by Svetlin
Allow hiding of whole group in ColumGroupsViewDefinition by adding Visibility property to ColumnGroup class.
Declined
Last Updated: 22 Jul 2015 11:06 by ADMIN
The horizontal scrollbar of the control does not behave correctly when there are several pinned columns and their width is larger than the visible area of RadGridView.
Completed
Last Updated: 09 Nov 2011 20:48 by Jesse Dyck
ADD. RadGridView - add support for sorting GridViewComboBoxColumn by Display or Value member in unbound mode.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: GridView
Type: Bug Report
0
When you select the cells of a pinned column and this column overlaps the next column, the cells from the next column are selected too.
Completed
Last Updated: 08 Nov 2011 06:25 by ADMIN
There are 2 main problems in this functionality:
A) User has to click the filter check box twice to get the state changed for the first time. That is unacceptable, It must work from first click from first click check box must change its state.
B) Parameters of FilterChanging event are absolutely useless and what is worse they even lie about real state of the filter.
C) If I want to edit in column editor FilterDescriptor property of the column some maybe old dialog window appears because whatever I set here it does not change anything.
Completed
Last Updated: 08 Nov 2011 04:13 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: GridView
Type: Feature Request
2
Currently RadGridView supports only copy & paste between grid cells
Completed
Last Updated: 07 Nov 2011 04:29 by Svetlin
The ValueChanged event of RadGridView is fired when the RadDateTimeEdior has null value and the popup is opened.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: GridView
Type: Bug Report
0
Exception occures when you have applied excel-like filtering and load layout.
Completed
Last Updated: 01 Aug 2014 07:29 by Svetlin
Created by: Svetlin
Comments: 0
Category: GridView
Type: Feature Request
1
The Column Chooser of RadGridView should show the invisible columns sorted.
Completed
Last Updated: 28 Oct 2011 05:44 by Svetlin
The evaluation of invalid expressions in RadGridView should not crash the host application.
Completed
Last Updated: 01 Dec 2011 14:09 by Jesse Dyck
ADMIN
Created by: Jack
Comments: 1
Category: GridView
Type: Bug Report
3
use attached project with pre-build release version of assemblies included in the 'telerik-devbranch-release' folder
1. Create a new project with RadGridView and bind it to a data source. The data source should contain a large number of rows (30000 for example)
2. Add a check box column
3. Run the project
4. Sort by a column (different from the checkbox column)
5. Check a checkbox
6. Click on some other column or row
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Improve the user experience by adding marker which shows the position where the group element will be added.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: GridView
Type: Feature Request
0
GridSpinEditor should round its value on end edit considering the number of decimal places.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: GridView
Type: Bug Report
2
Incorrect RadGridView behavior when changing sorted GridViewCheckBoxColumn checkboxes states.