- load some rows in the grid and enable the multiple selection - hold Control key and click row 1 - while still holding down Control key click row 2 - > now both rows are selected - with the Control key still down click row 2 again At this point row 2 should get deselected, but it remains selected.
Improve the filtering by date time column by adding properties that enable choosing whether to include time part and seconds part
The UserAddingRow event is not fired when you click on empty area in RadGridView.
1. Create a new project with RadGridView 2. Bind a hierarchy with a large number of rows 3. Add two buttons and on button click call ExpandAll and CollapseAll methods 4. Run the project and click the first button
The GridViewImageColumn does not support custom TypeConverter
1. Inherit from RadGridView 2. Add the grid to IContainer 3. Bind the grid => the rows are not visible even though they are added and the binding is successful
ADD. RadGridView - add functionality to automatically scroll to the needed position, during multiple selection of cells with the traslucent rectangle. MultiSelect = true SelectionMode = cells
A new row is added twice when the RadGridView is bound to EntityCollection.
The tab navigation is not changed when RightToLeft mode is enabled.
The SummaryRowGroupHeaders are not evaluated when grouping is changed.
The CellClick event is not fired for cells of GridViewCheckBoxColumn
1. Create a new project with RadGridView 2. Add a ContextMenuOpening event handler 3. Run the project 4. Right-click with the mouse on a non-selected row. You will observe that the CurrentRow property points to the wrong row.
FIX. RadGridView - the DisplayMember, ValueMember and DataSource properties of GridViewComboBoxColumn are not visible in the property builder
Currently the Contains operation considers the property value, but operators like Equals doesn't.
The maximum vertical scroll position is not accurate when the new row is on the bottom, sorting is applied and new row is added.
Add a filter condition using the filter row of the RadGridView which filters all but one item and it will not be selected automatically.
Please view the related project. The issue is valid when Sort API of Column object is used or sorting is added from SortDescriptors.Add method.
1. Create a new project with RadGridView 2. Setup hierarchy with two child views 3. Set the UseScrollbarsInHierarchy property to true 4. Run the project 5. Epxand a child view and try to resize its content, you will see a lot of white space which is not correct
1. Create a new project with RadGridView
2. Create an empty self-referencing data table
3. Set a self reference hierarchy by calling the AddSelfReference method
4. Add two rows in the table
5. Run the application and you will see that only one of the rows is visible.
DataTable table = new DataTable();
table.Columns.Add("Id", typeof(long));
table.Columns.Add("ParentId", typeof(long));
table.Columns.Add("Name", typeof(String));
gridView.DataSource = table;
gridView.Relations.AddSelfReference(this.gridView.MasterTemplate, "Id", "ParentId");
DataRow row = table.NewRow();
row["Id"] = 1;
row["ParentId"] = DBNull.Value;
row["Name"] = "Name1";
table.Rows.Add(row);
row = table.NewRow();
row["Id"] = 2;
row["ParentId"] = DBNull.Value;
row["Name"] = "Name2";
table.Rows.Add(row);
row = table.NewRow();
row["Id"] = 3;
row["ParentId"] = 2;
row["Name"] = "Name2";
table.Rows.Add(row);
1. Create a new project with RadGridView 2. Set SelectionMode to FullRowSelect and MultiSelect to true 3. Setup hierarchy 4. Expand a child view and select several rows with dragging 5. Click on the first selected row