Completed
Last Updated: 07 Feb 2012 07:29 by Jesse Dyck
1. Create a new project with RadGridView and bind it
2. Handle the UserAddedRow event
3. Run the project
4. Enter some text in a new row cell and click on the white space
5. You will see that the UserAddedRow event will not fire and the row will be added.
Completed
Last Updated: 11 Jan 2012 11:29 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: GridView
Type: Feature Request
2
Improve the filtering by date time column by adding properties that enable choosing whether to include time part and seconds part
Declined
Last Updated: 05 Jun 2015 10:25 by ADMIN
1. Create a new project with RadGridView.
2. Bind it.
3. Add some filter descriptors.
4. Handle the CustomFiltering event and add custom filter for some column.
5. Run the project and you will see that all other filters are not applied.
Completed
Last Updated: 11 Jan 2012 03:44 by Svetlin
The UserAddingRow event is not fired when you click on empty area in RadGridView.
Declined
Last Updated: 11 Jan 2016 11:51 by ADMIN
You cannot save the current row by performing the DataContext's SaveChanges method when the RadGridView is bound to IQueryable.

The code should look like this to work properly:
protected sealed override void BindingNavigator_SaveAction(object sender) {
    try
    {
        this.countriesRadGridView.EndEdit();
        BindingSource bs = this.countriesRadGridView.DataSource as BindingSource;
        bs.EndEdit();
        this.DataContext.SaveChanges();
        base.FireUpdateData();
    }
    catch (Exception Ex)
    {
        string exMessage = Ex.Message;
        MessageBox.Show(exMessage);
    }
}
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Depending on when the ViewDefinition is applied RadGridView throws an exception or not
Completed
Last Updated: 11 Feb 2014 13:46 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: GridView
Type: Bug Report
11
1. Create a new project with RadGridView
2. Setup a hierarchy with a large number of rows
3. Apply grouping and expand all child views
4. Run the project and try to scroll
Completed
Last Updated: 06 Jan 2012 09:15 by ADMIN
1. Create a new project with RadGridView
2. Bind a hierarchy with a large number of rows
3. Add two buttons and on button click call ExpandAll and CollapseAll methods
4. Run the project and click the first button
Completed
Last Updated: 06 Jan 2012 07:23 by Svetlin
The GridViewImageColumn does not support custom TypeConverter
Completed
Last Updated: 02 Jan 2012 06:58 by ADMIN
1. Inherit from RadGridView
2. Add the grid to IContainer
3. Bind the grid 
=> the rows are not visible even though they are added and the binding is successful
Completed
Last Updated: 30 Dec 2011 08:28 by ADMIN
ADD. RadGridView - add functionality to automatically scroll to the needed position, during multiple selection of cells with the traslucent rectangle.
MultiSelect = true
SelectionMode = cells
Completed
Last Updated: 30 Dec 2011 06:02 by Svetlin
A new row is added twice when the RadGridView is bound to EntityCollection.
Completed
Last Updated: 30 Dec 2011 04:37 by Svetlin
The tab navigation is not changed when RightToLeft mode is enabled.
Completed
Last Updated: 13 Jul 2015 10:18 by Svetlin
The AutoSizeColumnsMode.Fill cause glitches when HtmlViewDefinition is used.
Completed
Last Updated: 28 Dec 2011 09:37 by Svetlin
The SummaryRowGroupHeaders are not evaluated when grouping is changed.
Completed
Last Updated: 28 Dec 2011 07:23 by Svetlin
The CellClick event is not fired for cells of GridViewCheckBoxColumn
Completed
Last Updated: 23 Dec 2011 06:25 by ADMIN
1. Create a new project with RadGridView
2. Add a ContextMenuOpening event handler
3. Run the project
4. Right-click with the mouse on a non-selected row. You will observe that the CurrentRow property points to the wrong row.
Completed
Last Updated: 23 Dec 2011 04:00 by ADMIN
FIX. RadGridView - the DisplayMember, ValueMember and DataSource properties of GridViewComboBoxColumn are not visible in the property builder
Completed
Last Updated: 22 Dec 2011 10:06 by ADMIN
Currently the Contains operation considers the property value, but operators like Equals doesn't.
Completed
Last Updated: 22 Dec 2011 05:02 by Svetlin
The maximum vertical scroll position is not accurate when the new row is on the bottom, sorting is applied and new row is added.