Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: GridView
Type: Feature Request
1
Add option for alphabetical order of the columns in the "Rule applies on:" drop down list.
Completed
Last Updated: 25 Aug 2011 04:29 by ADMIN
1. Add a RadGridView
2. Create a new method and call it on a button click
2. Create and set a ColumnGroupsViewDefinition
3. Add rows in unbound mode
Completed
Last Updated: 23 Aug 2011 04:37 by ADMIN
Currently the editor cannot be closed using the CancelEdit method when handling the CellValidating event.
Completed
Last Updated: 18 Aug 2011 04:19 by ADMIN
FIX. RadGridView - setting the grid to ReadOnly and then back to normal mode, does not show the AddNewRow
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: GridView
Type: Feature Request
11
One may want to perform a search operatior over the records of RadGridView instead of filtering them. The search should be incremental and should scroll to the first position that contains a record that matches the search criteria.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
The issue appears when the current column of the control is changed programmatically in a way that the RadGridView's horizontal scrollbar value needs to be positioned between its minimum and maximum value.
Completed
Last Updated: 10 Aug 2011 08:40 by ADMIN
FIX. RadGridView - header cells incorrect state when column grouping is used. The clicked cells remain Hovered even when the mouse is not longer above the cell.
Completed
Last Updated: 09 Jun 2015 06:45 by ADMIN
ADD. RadGridView - add the ability to group by a certain column and display the groups sorted by the values of another column
Completed
Last Updated: 09 Aug 2011 07:57 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Bug Report
0
FIX. RadGridView - composite filters does not work
Completed
Last Updated: 05 Aug 2011 10:41 by Svetlin
The GetLookUpValue method of GridViewComboBoxColumn throws exception when the column shows enum values.
Completed
Last Updated: 29 Jul 2011 07:53 by ADMIN
FIX. RadGridView - FilterButton for Excel-Like filtering of GridViewComboBoxColumn, shows incorrect ToolTipText
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Currently it is possible to localize only menu names that appear in expression editor list, not in the expression itself.
Completed
Last Updated: 21 Jul 2011 10:31 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
3
Group Descriptors are added before adding rows in unbound mode and not using defer refresh or Begin/EndUpdate
test:
----------------------------------------------------
using System.ComponentModel;
using System.Windows.Forms;
using Telerik.WinControls.UI;
namespace Lab.Grid
{
public partial class GridGroupInUnboundMode : MainForm
{
private RadGridView gridView = new RadGridView();
public GridGroupInUnboundMode()
{
InitializeComponent();
this.gridView.Dock = DockStyle.Fill;
this.gridView.Parent = this;
this.gridView.BringToFront();
gridView.GroupDescriptors.Add("Name", ListSortDirection.Ascending);
GridViewTextBoxColumn col = new GridViewTextBoxColumn();
col.HeaderText = col.Name = "Id";
col.DataType = typeof(int);
gridView.Columns.Add(col);
col = new GridViewTextBoxColumn();
col.HeaderText = col.Name = "Name";
col.DataType = typeof(string);
gridView.Columns.Add(col);
col = new GridViewTextBoxColumn();
col.HeaderText = col.Name = "Sum";
col.DataType = typeof(double);
gridView.Columns.Add(col);
}
protected override void OnButton1Click()
{
gridView.Rows.Add(1, "Ivan", 123.56);
gridView.Rows.Add(2, "Ivan", 372.90);
gridView.Rows.Add(3, "Peter", 500.00);
}
protected override void OnButton2Click()
{
gridView.Rows.Add(4, "George", 300.00);
gridView.Rows.Add(5, "George", 600.00);
gridView.Rows.Add(6, "George", 100.00);
gridView.Rows.Add(7, "Enzo", 78.00);
}
protected override void OnButton3Click()
{
gridView.Rows.Add(8, "Enzo", 100.00);
gridView.Rows.Add(9, "Enzo", 200.00);
gridView.Rows.Add(10, "Enzo", 300.00);
}
}
}
Completed
Last Updated: 20 Jul 2011 04:38 by ADMIN
1. Create a new project and add RadGridView
2. Bind to a large DataSource (e.g. 150 k rows)
3. Set MultiSelect property to true
4. On a button click call the SelectAll method
5. Run the application and click the button
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
Manually generated hierarchy does not contain data if the Relation is defined before setting the data source to the parent level.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: GridView
Type: Bug Report
0
When there is as self-referencing hierarchy, column's BestFit method does not work properly.
Declined
Last Updated: 20 Feb 2014 09:52 by ADMIN
ADD. RadGridView - SelectLastAddedRow should work in scenarios when user adds row too, not only by adding rows from the datasource.
Comment - the property is intended to work only for added rows in the RadGridView DataSource. For the rest of the cases, the cases, the UserAddedRow event should be handled.
Completed
Last Updated: 14 Jul 2011 07:51 by ADMIN
There is an exception when resetting the binding source on CellEndEdit after pressing Enter
Comment: It is not correct to preserve the CurrentRow position when changing/reseting the binding source. Instead you can preserve its index and restore it when the data source is updated!
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: GridView
Type: Bug Report
0
The vertical scrollbar of RadGridView is not correctly calculated in a scenario with AutoSizeRows and added rows to the control using the Rows.NewRow() method.
Completed
Last Updated: 13 Jul 2011 05:38 by ADMIN
Pressing Ctrl+Shift+Home should select all rows from the current one to the first row.
Pressing Ctrl+Shift+End should select all rows from the current one to the last row.