Completed
Last Updated: 22 Feb 2011 08:52 by ADMIN
The ScrollToRow method is not working in hierarchy with tabbed child views
Completed
Last Updated: 09 Oct 2024 15:36 by ADMIN
Release 2024 Q4 (November)
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
The issue appears when the RadGridView control has several columns, some of the have fixed size (equal MinWidth and MaxWidth) and AutoSizeColumnsMode is Fill. The size of the not-fixed columns is calculated differently with each rebinding of the control.
Completed
Last Updated: 10 Feb 2011 04:10 by ADMIN
FIX. RadGridView - allowing row reorder on the first level of hierarchy (template[0]) results in visual representation of the reordering while no actual reordering is performed.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Relation is defined in DataSet bound to RadGridView control
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: 07 Feb 2011 07:42 by ADMIN
ADD. RadGridView add functionality to support the NOT operator while filtering i.e Not Starts With, Not Equals etc
Completed
Last Updated: 11 Feb 2014 13:25 by Jesse Dyck
ADMIN
Created by: Stefan
Comments: 18
Category: GridView
Type: Feature Request
72
ADD. Paging functionality for RadGridView.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
RadGridView crashes when it is in AutoSizeRows rows and a third level hierarchy cell is edited.
Completed
Last Updated: 28 Jan 2011 05:33 by Svetlin
When the AddNewBoundRowBeforeEdit property of GridViewTemplate is enabled, the properties of the underline business object are not set, while the GridViewNewRowInfo is edited.
Completed
Last Updated: 27 Jan 2011 05:19 by Svetlin
If you delete rows of the active view in tabbed child hierarchy, the new tab should be selected and the old tab should become invisible.
Completed
Last Updated: 25 Jan 2011 04:47 by ADMIN
Currently the column virtualization is disabled in column groups view, which causes slow scrolling when using a large number of columns
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
The GroupRow Height cannot be changed when ColumnGroupsViewDefinition and HtmlViewDefinition are used.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
The issue appears when the ViewDefinition of the control is ColumnGroupsViewDefinition, summary rows are added and grouping is performed.
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:07 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
0
related to fitering functionality of RadGridView control
Comment: 
Refreshing the master template of RadGridView in the CellEndEdit event handler is not allowed from the current architecture of the control. Use radGridView1.TableElement.Update(GridUINotifyAction.DataChanged) instead.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
Completed
Last Updated: 18 Jan 2011 05:53 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: GridView
Type: Bug Report
2
When canceling the CurrentRowChanging event and the changing row is the new row, then the click here to add new row text will not be visible anymore.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: GridView
Type: Feature Request
0
Replacing the RadTextBoxItem with RadTextBoxElement in the RadGridView editor will provide richer theming capabilities.
Completed
Last Updated: 18 Jan 2011 03:25 by Svetlin
If you change the values of the other business objects, when one of them is changed, RadGridView's rows' values are not affected.