Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Improve RadGridViewDragDropService extensibility to perform visual drop indication over RadTreeView.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
IMPROVE. RadExpressionEditorForm - add ability to be shown as modal form
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
There should be a way to determine if the row was deleted through the cell or row header context menu or by pressing the delete key.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
In particular customers want to add a button showing the excel like filter popup.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
The Expression Editor should be able to make expressions for a column in the parent template getting data from the child views.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Feature Request
1
ADD. RadGridView should support binding to IQuerable
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Feature Request
0
We also have another grid (the Microsoft one) and in that one for resizing a vertical line is drawn to indicate the size of your column. Only when you release the mouse is the column actually resized. I think this is better for the performance of the grid. In the attachment you can see what I mean.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADD. RadGridView - add support for self-reference hierarchy for child levels as well
Unplanned
Last Updated: 15 Aug 2017 09:33 by Svetlin
Make possible users easily to change the behavior of replacing the null value with empty string.

Workaround: 
DataTable table = new DataTable("table");
table.Columns.Add("ID", typeof(int));
DataColumn col = table.Columns.Add("Name", typeof(string));
col.AllowDBNull = false;
col.DefaultValue = string.Empty;
table.ColumnChanging += new DataColumnChangeEventHandler(table_ColumnChanging);
this.radGridView1.DataSource = table;

private void table_ColumnChanging(object sender, DataColumnChangeEventArgs e)
{
    if (!e.Column.AllowDBNull && (e.ProposedValue == DBNull.Value || e.ProposedValue == null) && e.Column.DataType == typeof(string))
    {
        e.ProposedValue = string.Empty;
    }
}
Unplanned
Last Updated: 15 Aug 2017 09:33 by Uwe
Consider the iTunes Artist mode grid
http://www.telerik.com/forums/itunes-like-grid
Unplanned
Last Updated: 15 Aug 2017 09:33 by Jared
Allow setting the CurrentColumn/CurrentCell in the RowValidaging event
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
IMPROVE. RadGridView - In hierarchy the excel-like filtering on child levels to show values only from the rows of the expanded row instead of all rows of the template.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Depending on when the ViewDefinition is applied RadGridView throws an exception or not
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Improve the user experience by adding marker which shows the position where the group element will be added.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Currently it is not possible to hide the horizontal scrollbar of child views in RadGridView and to use a single root level scrollbar.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
The total summary rows have the same number of indent columns as the group summary rows and it makes them harder to distinguish.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Currently when using RadGridView in AutoSizeRows mode, only the cells that are visible determine the row height.
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.
Unplanned
Last Updated: 15 Aug 2017 09:23 by ADMIN
The user should be able to select just part of the text in read-only grid using mouse.