Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
NullReferenceException is thrown, when the following steps are performed:

1. Scroll horizontally
2. Move a column by mouse drag and drop.
3. Start writing in the filter cell of the moved column
4. Suddenly the editor is closed.
5. When you try to write in the filter cell again, exception is thrown.

Work around:

void radGridView1_EditorRequired(object sender, Telerik.WinControls.UI.EditorRequiredEventArgs e)
{
    if (e.EditorType == typeof(RadTextBoxEditor))
    {
        e.Editor = new RadTextBoxEditor();
    }
}
Completed
Last Updated: 11 Mar 2013 06:29 by Svetlin
The RadGridView throws unhandled exception, when you try to close the custom filtering form twice for invalid filter descriptor.
Declined
Last Updated: 10 Oct 2014 09:00 by Svetlin
The alternating row color in RadGridView does not work when the control is in unbound mode and LoadFrom method is used.

Resolution: 
The issue is duplicated with feedback item FIX. RadGridView - AlternatingRowColor does not work when data is loaded in the RadGridView from a IDataReader
Here is the link to item:  http://feedback.telerik.com/Project/154/Feedback/Details/112656-fix-radgridview-alternatingrowcolor-does-not-work-when-data-is-loaded-in-the-r
Completed
Last Updated: 04 Mar 2013 05:33 by Svetlin
Export to excel fails when there is null values for GridViewDateTimeColumn.
The following code snippet reproduce the issue:

ExportToExcelML export = new ExportToExcelML(gridView);
export.HiddenColumnOption = HiddenOption.DoNotExport;
export.HiddenRowOption = HiddenOption.DoNotExport;
export.ExportVisualSettings = false;
export.SheetMaxRows = ExcelMaxRows._1048576;
export.RunExport(targetFileName);
Completed
Last Updated: 04 Mar 2013 06:18 by Svetlin
Filtering does not work correctly when NotConains and Contains filters are combined.

Work around:

private void radGridView1_FilterExpressionChanged(object sender, FilterExpressionChangedEventArgs e)
        {
            List<string> filterExpressions = new List<string>();

            for (int i = 0; i < this.radGridView1.FilterDescriptors.Count; i++)
            {
                FilterDescriptor descriptor = this.radGridView1.FilterDescriptors[i];
                string expression = null;

                CompositeFilterDescriptor compositeFilterDescriptor = descriptor as CompositeFilterDescriptor;

                if (compositeFilterDescriptor != null)
                {

                    expression = CompositeFilterDescriptor.GetCompositeExpression(compositeFilterDescriptor);
                }
                else
                {
                    expression = FilterDescriptor.GetExpression(descriptor);
                }

                if (!string.IsNullOrEmpty(expression))
                {
                    filterExpressions.Add("(" + expression + ")");
                }
            }

            string logicalOperator = (this.radGridView1.FilterDescriptors.LogicalOperator == FilterLogicalOperator.And) ? " AND " : " OR ";
            string resultExpression = String.Join(logicalOperator, filterExpressions.ToArray());
            e.FilterExpression = resultExpression;
        }
Declined
Last Updated: 17 Nov 2015 07:52 by ADMIN
The display member for empty string value in GridViewComboBoxColumn is not displayed. The following code reproduces the issue:

GridViewComboBoxColumn cboInsRslCd = new GridViewComboBoxColumn();
cboInsRslCd.DataType = typeof(string);
List<ItemComboBox> liste = new List<ItemComboBox>();
liste.Add(new ItemComboBox("", "[None]"));
liste.Add(new ItemComboBox("A", "A"));
liste.Add(new ItemComboBox("B", "B"));
liste.Add(new ItemComboBox("C", "C"));

cboInsRslCd.DataSource = liste;
cboInsRslCd.ValueMember = "CleItem";
cboInsRslCd.DisplayMember = "ValeurItem";
cboInsRslCd.NullValue = "[None]";
this.radGridView1.Columns.Add(cboInsRslCd);

WORKAROUND:  subscribe to the CellEndEdit event and change the stored value in the event handler:
private void RadGridView1_CellEndEdit(object sender, GridViewCellEventArgs e)
{
    if (e.Value == null)
    {
        e.Row.Cells[e.Column.Name].Value = "";
    }
}

http://www.telerik.com/community/forums/radgridview-comboboxcolumn-displays-no-value-for-member-with-empty-string-value-is-selected
Completed
Last Updated: 01 Mar 2013 03:46 by Svetlin
Object-hierarchy produces same child rows for every parent row.
Completed
Last Updated: 20 Feb 2013 03:55 by Svetlin
Scrolling when column reorder is performed does not work in hierarchy mode.
Declined
Last Updated: 11 Dec 2015 13:46 by ADMIN
The PDF exporting of RadGridView does not work correctly for Arabic text. The exported result revers the Arabic text.
Completed
Last Updated: 01 Dec 2015 14:07 by Svetlin
Workaround:

List<object> list = new List<object>(array);
this.radGridView1.DataSource = list;
Completed
Last Updated: 17 May 2012 08:38 by Svetlin
You cannot changed the value of a check box cell for more than one child rows in object relation hierarchy.
Completed
Last Updated: 10 May 2012 06:56 by Svetlin
Created by: Svetlin
Comments: 0
Category: GridView
Type: Bug Report
0
In html view definition and hierarchy mode, the RadGridView throws exception when the TableElement is in explorer bar mode.
Completed
Last Updated: 13 Jul 2015 13:01 by Svetlin
You cannot select cells from first and last column when the RadGridView is in right to left mode.
Completed
Last Updated: 20 Jul 2015 09:47 by Svetlin
Horizontal cell navigation causes sometime scrolling per page instead of paging to the next invisible column.
Completed
Last Updated: 30 Jan 2012 04:35 by Svetlin
Exception is thrown if the data source of second template is changed and rows are expanded in hierarchy.
Completed
Last Updated: 05 Aug 2011 10:41 by Svetlin
The GetLookUpValue method of GridViewComboBoxColumn throws exception when the column shows enum values.
Completed
Last Updated: 29 Aug 2011 04:34 by Svetlin
If you show a hidden form that hosts a RadGridView control instance, the filtering does not perform correctly.
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: 12 Dec 2011 09:29 by Svetlin
The CellClick event is fired when the mouse button is released after scrolling.
Completed
Last Updated: 13 Dec 2011 04:17 by Svetlin
When you set the value of unbound column in bound mode of RadGridView, the cell is not updated.