Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Scroll bar calculations are wrong, when rows are hidden in CellClick event.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
The editor does not remain focused when cell has invalid value and mouse down button is pressed over another cell.
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: 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
The Active editor is not focused when the CellValidating event is canceled and navigation is performed.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
The cell navigation is wrong when the grid is ungrouped. Steps to reproduce: 1. Enable cell selection mode 2. Navigate with keyboard 3. Group the RadGridView by one column 4. Navigate with keyboard 5. Ungroup the RadGridView's rows 6. Now Keyboard navigation is wrong.

Same behavior appears with the default selection mode:

- Group the grid and select a row in a group

- Ungroup and use the keyboard to navigate between the rows => it navigates only the rows that were in the group where we have selected a row

WORKAROUND: 

private void radGridView1_GroupByChanged(object sender, Telerik.WinControls.UI.GridViewCollectionChangedEventArgs e)

{

    GridViewRowInfo row = this.radGridView1.CurrentRow;

    this.radGridView1.CurrentRow = null;

    this.radGridView1.CurrentRow = row;

}
Completed
Last Updated: 05 Jun 2014 07:08 by Jesse Dyck
Custom filtering does not work when self-referencing hierarchy used in RadGridView.

Work around:

GridView.EnableFiltering = !GridView.EnableFiltering;
GridView.EnableFiltering = !GridView.EnableFiltering;
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
The hover visual style is applied on non hovered cell in Windows 7 Theme. 

1. You should select a cell.
2. You should scroll the RadGridView with mouse wheel
3. You should hover the cell above the selected one.
4. You should select the cell below the current one.
5. You should scroll with mouse wheel.
6. After hovering the cells under the current cell several times, one of them will have gray background.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Each time when the GridViewMaskeBoxColumn's cells leave edit mode, their values is decreased if percentage mask is used.


GridViewMaskBoxColumn maskBoxColumn = new GridViewMaskBoxColumn("Amount", "Amount");
maskBoxColumn.Mask = "P";
maskBoxColumn.MaskType = MaskType.Numeric;
maskBoxColumn.FormatString = "{0:0.00%;0.00%;none}";
this.radGridView1.Columns.Insert(2, maskBoxColumn);
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
If you perform grouping by column and then apply best fit algorithm, it does not obey the data cells if the group rows are not expanded.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Exception is thrown when keyboard navigation is used and RadGridView is grouped. Steps to reproduce:
1. Apply Office 2010 Silver theme to RadGridView.
2. Group the grid by two columns
3. Set AutoSizeRows to true.
3. Edit a decimal column
4. Navigate at right column
5. Exception is thrown.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Created by: Svetlin
Comments: 0
Category: GridView
Type: Bug Report
1
Filtering of enum data type throws exception.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Self-reference expander cell is reused inappropriately when horizontal scrolling is performed.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
When the RadGridView is scrolled horizontally, the right border of row header cell disappears.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
When RadGridView performs exporting to excel, the values that have white-spaces at the beginning or at the end are trimmed.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
The RadExpressionEditorForm should not show the invisible columns in its fields section.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
- Allow easy replacement of Conditional Formatting form
- Localization of the form does not cover the Sort Alphabetically check box
- Allow formatting of the items in columns drop down in Conditional Formatting Form
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
The code below causes wrong layout of RadGridView control when 0, A0, A1, B2, C1 rows are expanded:

private List<GridViewTemplate> childTemplates;

public TestForm2()
{
    InitializeComponent();
}

protected override void OnLoad(EventArgs e)
        {
  
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
NullReferenceException when the Text property of RadDropDownListEditor is initialized with null value in the CellEditorInitialized event.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Copy of cells from second level in hierarchy does not work.