Unplanned
Last Updated: 30 Mar 2016 07:53 by Svetlin
Workaround:
Private Sub radGridView1_CellFormatting(sender As Object, e As Telerik.WinControls.UI.CellFormattingEventArgs)
    If e.CellElement.IsPinned Then
        If e.CellElement.RowElement.DrawFill Then
            e.CellElement.DrawFill = False
        Else
            e.CellElement.ResetValue(LightVisualElement.DrawFillProperty, ValueResetFlags.Local)
        End If
    End If
End Sub
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
The active text box editor overlaps the bottom cell border, when RadGridView uses Windows 7 Theme.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Self-referencing hierarchy does not occur, if you bind the grid inside BeginUpdate-EndUpdate method invocation.
Completed
Last Updated: 17 Nov 2015 16:27 by Svetlin
Workaround the issue by using the DataBindingComplete event in the following manner:

private GridViewRowInfo oldCurrentRow = null;

protected override void OnLoad(EventArgs e)
{
this.radGridView1.DataBindingComplete += this.OnDataBindingComplete;

this.oldCurrentRow = this.radGridView1.CurrentRow;
this.radGridView1.DataSource = Telerik.Help.Data.GetDummyEmployees(0);
}

private void OnDataBindingComplete(object sender, Telerik.WinControls.UI.GridViewBindingCompleteEventArgs e)
{
    if (this.oldCurrentRow != this.radGridView1.CurrentRow && this.radGridView1.RowCount == 0)
    {
        this.radGridView1.MasterTemplate.EventDispatcher.RaiseEvent<CurrentRowChangedEventArgs>(EventDispatcher.CurrentRowChanged,
            this.radGridView1.MasterTemplate, new CurrentRowChangedEventArgs(null, null));
    }
 
    this.oldCurrentRow = null;
}
Completed
Last Updated: 05 Jun 2015 07:47 by ADMIN
Excel like filtering does not select dates in the Calendar, when During last 7 day or Yesterday are checked.
Completed
Last Updated: 03 Aug 2015 10:50 by Svetlin
If you change the RadGridView in design-time by property builder, the smart tag disappears after closing the builder.
Completed
Last Updated: 28 Feb 2013 02:14 by Svetlin
The summary aggregate expression IIF(SUM(RecordCount) = 0, 0, 1/SUM(RecordCount)) causes exception in RadGridView.
Completed
Last Updated: 01 Mar 2013 00:49 by Svetlin
If RadDropDownListEditor has DropDown style and you write a value which exists in the underline data source, it does not become current value.
Completed
Last Updated: 01 Apr 2013 03:38 by Svetlin
If you end edit of sorted decimal column by pressing ENTER key, the StackOverflowException is thrown.
Completed
Last Updated: 26 Jun 2012 03:17 by Jesse Dyck
Closing a form in CellDoubleClick event causes NullReferenceException in RadGridView.
Completed
Last Updated: 26 Apr 2012 04:48 by Svetlin
When the BeginUpdate and EndUpdate methods of RadGridView are used, the top summary row occurs twice when grouping is performed.
Unplanned
Last Updated: 29 Mar 2016 14:44 by Jesse Dyck
Here is how this issue can be worked around:
void radGridView1_CellEditorInitialized(object sender, GridViewCellEventArgs e) { ((RadMultiColumnComboBoxElement)e.ActiveEditor).AutoSizeDropDownToBestFit = true; ((RadMultiColumnComboBoxElement)e.ActiveEditor).DropDownAnimationEnabled = false; }
   
Completed
Last Updated: 08 Feb 2012 07:22 by Svetlin
Scrolling by mouse wheel in hierarchical RadGridView causes exception when Microsoft IntelliPoint is installed and configured for 25 vertical scrolling speed.
Declined
Last Updated: 20 Feb 2014 09:56 by Svetlin
The DefaultValueAttribute of Format and FormatInfo properties of GridViewDataColumn causes exceptions when load layout is performed.
Comment: this is an issue inside .Net framework.
Completed
Last Updated: 27 Jan 2012 10:11 by Svetlin
The first row overlaps the GridTableElement's top border when group panel and column's headers are invisible.
Completed
Last Updated: 31 Jan 2012 07:00 by Svetlin
If all rows are expanded in hierarchy, the last scroll position of the vertical scroll bar does not show all available rows from the child template.
Completed
Last Updated: 11 Jan 2012 03:44 by Svetlin
The UserAddingRow event is not fired when you click on empty area in RadGridView.
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.