Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
Steps to reproduce - by using the code below follow these steps
1) Enter some text in the first cell
2) In the first ComboBox cell ("city") type the beginning of the word, for example "L", then the dataSource gets filtered and contains only items begins with "L". 
3) Move down to the second Item by the down arrow key and choose it by pressing tab key 
4) Now the next cell becomes focused, type in capital "M"
Result: Exception: IndexOutOfRangeException - "Index was outside the bounds of the array."

 DataTable dt = new DataTable();
            dt.Columns.Add("name");
            dt.Columns.Add("city", typeof(int));
            dt.Columns.Add("role", typeof(int));
            radGridView1.DataSource = dt;.

            radGridView1.Columns.RemoveAt(1);
            radGridView1.Columns.RemoveAt(1);

            DataTable dtCities = new DataTable();
            dtCities.Columns.Add("id", typeof(int));
            dtCities.Columns.Add("name");
            dtCities.Rows.Add(1, "New York");
            dtCities.Rows.Add(2, "London");
            dtCities.Rows.Add(2, "Lisabon");

            GridViewComboBoxColumn cityCol = new GridViewComboBoxColumn("city");
            cityCol.DataSource = dtCities;
            cityCol.ValueMember = "id";
            cityCol.DisplayMember = "name";
            cityCol.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
            cityCol.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDown;
            radGridView1.Columns.Add(cityCol);

            DataTable dtRoles = new DataTable();
            dtRoles.Columns.Add("id", typeof(int));
            dtRoles.Columns.Add("name");
            dtRoles.Rows.Add(1, "Sales Man");
            dtRoles.Rows.Add(2, "Manager");

            GridViewComboBoxColumn roleCol = new GridViewComboBoxColumn("role");
            roleCol.DataSource = dtRoles;
            roleCol.ValueMember = "id";
            roleCol.DisplayMember = "name";
            roleCol.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
            roleCol.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDown;
            radGridView1.Columns.Add(roleCol);

WORKAROUND: Replace the editor with a new one to avoid reusage
 void radGridView1_EditorRequired(object sender, EditorRequiredEventArgs e)
        {
            if (e.EditorType == typeof(RadDropDownListEditor))
            {
                e.Editor = new RadDropDownListEditor();
            }
        }
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
Implement a property such as EncloseDataWithQuotes, which should get or set whether the exported data should contain quotes 
http://www.telerik.com/help/aspnet-ajax/p_telerik_web_ui_gridcsvsettings_enclosedatawithquotes.html
Completed
Last Updated: 23 Apr 2014 12:56 by Ira
To reproduce:
- Create a GridViewMaskBoxColumn with standard mask type and mask set to "aaaaaaaaaa".
- Bind the grid to the following DataTable:
private static DataTable GridDataTable()
{ 
    DataRow dr = default(DataRow);
    DataTable dt = new DataTable();
    dt.Columns.Add("Description");
    
    dr = dt.NewRow();
    dr[0] = "1234567890";
    dt.Rows.Add(dr);
    
    dr = dt.NewRow();
    dr[0] = "abc";
    dt.Rows.Add(dr);
    
    return dt;
}

- Click the first cell in order to enter in edit mode.
- Click the second cell and you will notice that the text is wrong.

Workaround:
- change the value in the CellEditor intialized event handler:

void radGridView1_CellEditorInitialized(object sender, GridViewCellEventArgs e)
{
    if (e.ActiveEditor is RadMaskedEditBoxEditor)
    {
        RadMaskedEditBoxEditor editor = e.ActiveEditor as RadMaskedEditBoxEditor;
        editor.MaskTextBox.Value = "___________";
        editor.MaskTextBox.Value = (string)radGridView1.CurrentCell.Value;
   
    }
}
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
2
IIF function in Expression for calculated columns does not work.
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
1
When adding a new row in underling data source and SelectLastAddedRow is true the newly added row is set as current but it is out of visible grid area.
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
1
Excel-like filtering throws an exception if there is a combo-box column, which contains values of types System.DBNull
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: 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
1
If in underling datasource there are more than one field, which do not allow null values, trying to set them in DefaultValueNeeded event leads to exception "Column [columnName] does not allow nulls"
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.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
2
When loading layout in RadGridView, combo box columns lose their data-sources.