Completed
Last Updated: 15 Jul 2013 08:51 by ADMIN
To reproduce:
-set AutoSizeMode to Fill
- Add view definition with two rows
- Add check box column to the view
-Set check box column minWidth 

Workaround:
Create a custom view definition, then create a custom ColumnGroupRowLayout class and override the GetClumnWidth method like this:
class MyViewDefinition : ColumnGroupsViewDefinition
{
 
    public MyViewDefinition()
    {
             
    }
    public override IGridRowLayout CreateRowLayout()
    {
        return new MyRowLayout(this);
    }
}
 
public class MyRowLayout : ColumnGroupRowLayout
{
 
    public MyRowLayout(ColumnGroupsViewDefinition view):base(view)
    {
 
    }
 
    public override int GetColumnWidth(GridViewColumn column)
    {
        return Math.Max( base.GetColumnWidth(column), column.MinWidth);
    }
}
Completed
Last Updated: 26 Sep 2013 01:54 by ADMIN
To Reproduce:
- Add GridViewCalculatorColumn to a RadGridView.
- When you begin edit a cell the value is not selected.

Workaround:
Create a custom RadCalculatorEditor and then change the editor in EditorRequired event:
void radGridView1_EditorRequired(object sender, EditorRequiredEventArgs e)
{
    if (e.EditorType.Name == "RadCalculatorEditor")
    {
        e.Editor = new CustomCalculatorEditor();
    }
}

public class CustomCalculatorEditor : RadCalculatorEditor
{
    public override void BeginEdit()
    {
        base.BeginEdit();
        RadCalculatorDropDownElement editorElement = this.EditorElement as RadCalculatorDropDownElement;
        editorElement.EditorContentElement.TextBoxItem.SelectAll();
    }
}
Completed
Last Updated: 21 Mar 2014 08:00 by ADMIN
To reproduce:
- Add MultiColumnComboBoxColumn to a blank grid.
- Subscribe to the SelectedIndexChanged event of the corresponding ActiveEditor (RadMultiColumnComboBoxElement).
- You will notice that when you select different cells the event is fired several times.
Completed
Last Updated: 12 Mar 2014 11:07 by ADMIN
To reproduce: - Subscribe to the grids KeyDown event. - You will notice that KeyDown event is not fired when the control key is pressed. 

Workaround: - Use the KeyUp event instead. - Also setting the ClipboardCopyMode property to disabled will activate the event for this case. 
Completed
Last Updated: 12 Mar 2014 13:32 by ADMIN
Add the ability to access the ColumnChooser opening in order to set its properties. Currently, every time when the user opens the ColumnChoser new instance is created and because of this its properties and events are no longer available. This feature will 

Resolution:
Add the ColumnChooserCreated event which access and  allow to customize the ColumnChooser. 

//subscribe to the event ColumnChooserCreated
this.radGridView1.ColumnChooserCreated += new ColumnChooserCreatedEventHandler(radGridView1_ColumnChooserCreated);
			
//customize the ColumnChooser
void radGridView1_ColumnChooserCreated(object sender, Telerik.WinControls.UI.ColumnChooserCreatedEventArgs e)
{
    e.ColumnChooser.ForeColor = Color.DarkGreen;
    e.ColumnChooser.Text = "My title";
    e.ColumnChooser.ColumnChooserControl.ColumnChooserElement.Font = this.Font;
    e.ColumnChooser.ColumnChooserControl.ColumnChooserElement.Text = "My text";
}
Completed
Last Updated: 20 Aug 2015 10:34 by ADMIN
To reproduce: Create a RadGridView and set its view to ColumnGroupsViewDefinition following this article - http://www.telerik.com/help/winforms/gridview-viewdefinitions-column-groups-view.html. The text in the headers long enough so it does not fit in the cells. Using the ViewCellFormatting event set each cell's TextWrap property to true. You will notice that the header cells are not being TextWrapped 
Completed
Last Updated: 28 Jun 2011 10:40 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: GridView
Type: Bug Report
0
UserAddedRow should be fired after all tasks related to the process of adding a row are completed. This will allow our users to set the current row after a row is added.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
0
On DateTime column when IsNull or IsNotNull option has been chosen it throws exception.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
0
When changing parent form Localization property the column's header text does not changes appropriately
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
0
CellFormatting should not me thrown for filter cell elements.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
0
Column's FormatString property should be applied to filter cells as well.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
0
Assigning a custom type convertor to the column's DateTypeConvertor property does not work as expected.
Completed
Last Updated: 13 Dec 2018 12:01 by Luca
ADMIN
Created by: Martin Vasilev
Comments: 1
Category: GridView
Type: Bug Report
0
If current culture uses comma as delimeter, the MS Excel cannot handle the decimal values in a right way.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
0
When exporting to excel through ExportToExcelML class, Guid type values are not exported.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
0
When applying a filter to RadGridView, there is inconsistency between underlying data source current row and grid's current row.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
0
In some particular cases it is possible to experience a undesired scroll behaviour in RadGridView with lots rows. When clicking on first or second grid's row, it scrolls on row down and the first row goes out of sight.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
0
RadGridView remains in edit mode if the focus has been taken from RadToolStrip's item (for example: ButtonElement is clicked)
It is an issue in the obsolete RadToolStrip. Works as expected with RadCommandBar.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
0
If there is an underling font in the grid, exported file cannot be opened from MS Excel.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
0
If there is conditional formatting it takes wrong settings for base cell colour.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
0
In some cases Columns Group View has impropriate cells layout, mostly rendering two borders on one and the same side for some particular cells.