Completed
Last Updated: 21 Dec 2011 10:51 by ADMIN
Add a filter condition using the filter row of the RadGridView which filters all but one item and it will not be selected automatically.
Completed
Last Updated: 20 May 2014 08:34 by ADMIN
IMPROVE. RadGridView - add the current selection and the new selection to the SelectionChanging event.
Completed
Last Updated: 20 Dec 2011 07:07 by ADMIN
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.
Completed
Last Updated: 16 Dec 2011 05:54 by ADMIN
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
Completed
Last Updated: 16 Dec 2011 04:43 by ADMIN
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);
Completed
Last Updated: 15 Dec 2011 05:25 by ADMIN
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
Completed
Last Updated: 15 Dec 2011 05:04 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: GridView
Type: Feature Request
1
When there are a lot of groups in the group panel there is a scrollbar. However sometimes it is convenient to resize this panel to allow all groups to be visible. Currently this is not possible.
Completed
Last Updated: 15 Dec 2011 04:51 by ADMIN
FIX. RadGridView - GridViewCollectionChangingEventArgs in the FilterChanging event handler are incorrect.
Completed
Last Updated: 15 Dec 2011 03:39 by Svetlin
The ConditionalFormatingObjectList of RadGridView's columns cannot be modified at design-time.
Completed
Last Updated: 13 Dec 2011 07:07 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
0
The problem exist for NotifyCollection - CollectionChanged event also. Filter events too.
Completed
Last Updated: 13 Dec 2011 04:17 by Svetlin
When you set the value of unbound column in bound mode of RadGridView, the cell is not updated.
Completed
Last Updated: 12 Dec 2011 09:29 by Svetlin
The CellClick event is fired when the mouse button is released after scrolling.
Completed
Last Updated: 09 Dec 2011 04:56 by Svetlin
The GridSpinEditor of RadGridView changes its value automatically to its maximum.
Completed
Last Updated: 09 Dec 2011 02:58 by ADMIN
I have a radform, drop a gridview on it, go into property builder for the gridview and add a textbox column, make the column read only, do not allow sorting, grouping, or adding, do not show the group panel or the column header row.  The top border is missing.
Completed
Last Updated: 08 Dec 2011 07:29 by ADMIN
1. Create a new project with RadGridView
2. Set ColumnGroupsViewDefinition
3. Save the layout by calling the SaveLayout method
4. Load the layout by calling the LoadLayout method
Completed
Last Updated: 20 Apr 2017 13:05 by Svetlin
GridViewSpreadExport does not export correctly more than one child templates from second level.
Completed
Last Updated: 07 Dec 2011 12:45 by ADMIN
1. Create a new project with RadGridView
2. Create a new ColumnGroupsViewDefinition
3. Change the ViewDefinition property in the Designer.cs file before calling the EndInit method
4. Run the project
Completed
Last Updated: 07 Feb 2014 15:18 by ADMIN
exception is thrown when the ListChanged event send ItemChanged notification before ItemAdded
Completed
Last Updated: 07 Dec 2011 02:13 by ADMIN
1. Drag a RadGridView on a form.
2. Set the EnableFiltering and ShowHeaderCellButtons to true.
3. Fill the grid with data and run the project.
4. Open the filter popup and type something in the text field.
5. Press enter key and the popup will be closed without applying the filter.
Completed
Last Updated: 10 Sep 2015 13:14 by Jesse Dyck
The performance of excel-like filtering when you have more than 5000+ row in RadGridView.