Completed
Last Updated: 16 Mar 2012 08:16 by Svetlin
The CellFormating example of RadGridView formats in red color not only FirstName column's cells.
Completed
Last Updated: 06 Jul 2011 02:51 by Svetlin
If you show a message box dialog in the SelectionChanged event of RadGridView, you need to click twice to minimize the form.
Completed
Last Updated: 12 Sep 2011 03:27 by Svetlin
The selected cells are not cleared when already selected cell is clicked.
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: 06 Jan 2012 07:23 by Svetlin
The GridViewImageColumn does not support custom TypeConverter
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);
    }
}
Completed
Last Updated: 30 Dec 2011 04:37 by Svetlin
The tab navigation is not changed when RightToLeft mode is enabled.
Completed
Last Updated: 28 Dec 2011 07:23 by Svetlin
The CellClick event is not fired for cells of GridViewCheckBoxColumn
Completed
Last Updated: 28 Dec 2011 09:37 by Svetlin
The SummaryRowGroupHeaders are not evaluated when grouping is changed.
Completed
Last Updated: 20 Apr 2017 13:05 by Svetlin
GridViewSpreadExport does not export correctly more than one child templates from second level.
Completed
Last Updated: 21 Sep 2010 04:24 by Svetlin
If the NewRowEnterKeyMode value is EnterMovesToLastAddedRow and you press the Enter key to add a new row, this new row is added twice.
Completed
Last Updated: 31 Mar 2010 05:03 by Svetlin
When you edit a cell of a GridDateTimeColumn which is near the screen bounds, a part of the RadDateTimeEditor's popup is outside these bounds.

Issue addressed by RadGridView Q2 2010+ (version 2010.2.10.713+)
Completed
Last Updated: 02 Feb 2010 01:51 by Svetlin
Created by: Svetlin
Comments: 0
Category: GridView
Type: Bug Report
1
If the first column in a flat grid is a GridViewDateTimeColumn and you try to edit it by pressing '1' key without any mouse interaction, you get InvalidCastException.
Completed
Last Updated: 03 Sep 2011 05:35 by Jesse Dyck
When you define a data source which contains display value for null value, the display value does not appear in the column's cells.
Completed
Last Updated: 27 May 2011 03:42 by Svetlin
Drag and drop of columns to the Column Chooser and columns reordering do not work in ColumnGroupsViewDefinition.
Completed
Last Updated: 18 Jan 2011 03:25 by Svetlin
If you change the values of the other business objects, when one of them is changed, RadGridView's rows' values are not affected.
Completed
Last Updated: 23 Dec 2010 05:29 by Svetlin
Created by: Svetlin
Comments: 0
Category: GridView
Type: Bug Report
1
When grouping in RadGridView is performed, the best fit operation throws NullReferenceException.
Completed
Last Updated: 22 Dec 2010 07:57 by Svetlin
Created by: Svetlin
Comments: 0
Category: GridView
Type: Bug Report
1
When date time filtering is performed for NotEqualTo or GreaterThanOrEqual operator, the filtered rows do not obey the filter's condition.
Completed
Last Updated: 14 Dec 2016 14:23 by ADMIN
Implement the 'substring' function for calculated columns.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
Provide calculation of the 'Ceiling' function in a column expression:
column.Expression = "Ceiling(ColumnName)";