The CellFormating example of RadGridView formats in red color not only FirstName column's cells.
If you show a message box dialog in the SelectionChanged event of RadGridView, you need to click twice to minimize the form.
The selected cells are not cleared when already selected cell is clicked.
A new row is added twice when the RadGridView is bound to EntityCollection.
The GridViewImageColumn does not support custom TypeConverter
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);
}
}
The tab navigation is not changed when RightToLeft mode is enabled.
The CellClick event is not fired for cells of GridViewCheckBoxColumn
The SummaryRowGroupHeaders are not evaluated when grouping is changed.
GridViewSpreadExport does not export correctly more than one child templates from second level.
If the NewRowEnterKeyMode value is EnterMovesToLastAddedRow and you press the Enter key to add a new row, this new row is added twice.
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+)
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.
When you define a data source which contains display value for null value, the display value does not appear in the column's cells.
Drag and drop of columns to the Column Chooser and columns reordering do not work in ColumnGroupsViewDefinition.
If you change the values of the other business objects, when one of them is changed, RadGridView's rows' values are not affected.
When grouping in RadGridView is performed, the best fit operation throws NullReferenceException.
When date time filtering is performed for NotEqualTo or GreaterThanOrEqual operator, the filtered rows do not obey the filter's condition.
Implement the 'substring' function for calculated columns.
Provide calculation of the 'Ceiling' function in a column expression: column.Expression = "Ceiling(ColumnName)";