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.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Exception is thrown when a property of data bound record is changed and filtering is applied
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
FIX. When you reorder columns in RadGridView, the visual indicator is position out side of the grid, if the column is intersected with control's width.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
While RadGridView is resized, the active combobox editor is placed in columns that are not current.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
When ColumnGroupsView is used, the user should be allowed to hide a group via the context menu and show group via Column Chooser.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
The CustomFilterForm should be available for customization.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
If you create conditional formatting, the rows that obey the rule should not be affected if they are selected.
To support this formatting the format.ApplyOnSelectedRows property must be set to false.
Test project:
using System.Data;
using System.Drawing;
using System.Windows.Forms;
using Telerik.WinControls.UI;
namespace Lab.Grid
{
public partial class GridConditionalFormattingForm : Form
{
private RadGridView gridView = new RadGridView();
public GridConditionalFormattingForm()
{
InitializeComponent();
gridView.Dock = DockStyle.Fill;
gridView.Parent = this;
gridView.MultiSelect = true;
DataTable data = new DataTable();
data.Columns.Add("ID");
data.Columns.Add("Name");
data.Rows.Add(1, "Name1");
data.Rows.Add(2, "Name2");
data.Rows.Add(1, "Name3");
data.Rows.Add(4, "Name4");
data.Rows.Add(1, "Name5");
gridView.DataSource = data;
}
protected override void OnLoad(System.EventArgs e)
{
base.OnLoad(e);
ConditionalFormattingObject format = new ConditionalFormattingObject("MyCondition", ConditionTypes.Equal, "1", "", true);
format.CellBackColor = Color.Red;
format.ApplyOnSelectedRows = false;
gridView.Columns[0].ConditionalFormattingObjectList.Add(format);
}
}
}
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Vertical scrolling in HtmlViewDefinition is wrong when the RowSpacing property set to value greater that zero

The same issue occurs in ColumnsGroupViewDefinition (See Ticket ID: 410535)
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Created by: Svetlin
Comments: 0
Category: GridView
Type: Feature Request
2
RadGridView should be able to filter by enum values.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
If the DPI setting of the screen is 120, the layout of the Conditional formatting form is broken. One can't see the buttons to apply his/her preferences.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: GridView
Type: Bug Report
0
When a user enters some data in a cell, then clicks in an empty part of RadGridView and finally clicks a button that calls the Update on the table adapter, no changes are committed to the DB. 
However, this case should be covered and there should be changes in the DataSet
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: GridView
Type: Bug Report
0
When you set the DecimalPlaces property of GridViewDecimalColumn, this setting is not reflected on the GridSpinEditor