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.
Completed
Last Updated: 21 Dec 2011 10:51 by ADMIN
Add a filter condition using the filter row of the RadGridView which filters all but one item and it will not be selected automatically.
Completed
Last Updated: 20 May 2014 08:34 by ADMIN
IMPROVE. RadGridView - add the current selection and the new selection to the SelectionChanging event.
Completed
Last Updated: 20 Dec 2011 07:07 by ADMIN
Please view the related project. The issue is valid when Sort API of Column object is used or sorting is added from SortDescriptors.Add method.