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: 10 Jan 2013 04:29 by ADMIN
1. Create a new project with RadGridView and setup grouping.
2. Run the project, expand several groups and start navigating with left / right keys.
3. You will see that when navigating through group rows, RadGridView iterates all columns. It should select the next/previous row with a single click.
Completed
Last Updated: 12 Jun 2014 06:06 by ADMIN
A few threads have been posted over the years to ask about natural sorting, which is clicking a column header to go Ascending, Descending, then back to the default unsorted mode on the third click. I looked around for a tri-state or three-state toggle and didn't find any info.  Very helpful but incomplete info is found here and here, so I thought I'd provide C# code to help anyone else looking to do this. Some threads refer to MasterGridViewTemplate.AllowNaturalSort but that property no longer exists. My code is adapted from the second forum posting referenced. It looks like the library has changed since Sean wrote his code.

Telerik.WinControls.Data.SortDescriptor.Direction is of type System.ComponentModel.ListDirection, and that enum only has two values. So the Boolean _sorted is used - if the grid is sorted in ascending or descending order, then use the sort order, but  if we click past descending order, set _sorted to false (natural sort!) and clear the SortDescriptors.

Of course clearing SortDescriptors means this only works with single column sorting. Maybe someone will follow-up here with a solution that works with multiple columns.
Completed
Last Updated: 09 Dec 2010 03:02 by ADMIN
No data to display view for every child template in hierarchy mode and ActiveViewChanged event to support implementation of custom logic

COMMENT: NoDataToDisplay text is not specific for any view. It appears only when RadGridView is empty. Child views do not take place when there are no child rows in them and there is no need to show the text for child views.
Completed
Last Updated: 26 Sep 2010 10:19 by Jesse Dyck
ADMIN
Created by: Julian Benkov
Comments: 1
Category: GridView
Type: Feature Request
1
Custom filtering for Enum types, TypeConverter support for business object bind to RadGridView
Completed
Last Updated: 03 Aug 2012 12:19 by Jesse Dyck
ADMIN
Created by: Julian Benkov
Comments: 1
Category: GridView
Type: Bug Report
1
I am executing the following code.  Utilizing the debugger I know the code is only implemented once, and it works correctly at first but then at seemingly random intervals multiple rows will expand.   I used modified code as well to first collapse all rows and then expand only the one with the matching ID field, but I get the same results.
Completed
Last Updated: 10 Oct 2012 03:51 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
1
Gridview contains one image column and one text column. It is supposed that the data in the gridview is sorted by the text column. EnableSorting is enabled for the whole gridview. The image column has AllowSort disabled and SortOrder set to None whereas the text column has the SortOrder set to Ascending. However, if the grid is populated with data it is primarily sorted by the image column. 
This problem is illustrated in the attached project. I've added three rows with data and would expect the grid be sorted as "A", "B", "C", whereas the resulting order is "B", "C", "A" due to the image in the row which contains the "A".
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
We would like to use the expressions created using the GridView in some of our LINQ queries on the individual columns. Are we able to get the raw C# or LINQ expression format from the expression editor for the actual expression? What language does the expression essentailly compile to?
Completed
Last Updated: 03 Sep 2012 06:11 by ADMIN
The recommended solution works fine but late I found that unfortunately there is some error in handling custom filters that prevents in most of our grids correct functioning. 
I enabled custom filtering and assigned event handler. When following conditions are met:
    - grid has no FilterDescriptors
    - e.Handled is set to false in GridViewCustomFilteringEventHandler

then row, for which was set e.Handler = false in custom filtering event handler, is not shown in the grid. If grid has some FilterDescriptor in its FilterDescriptors collections, then everything works as expected.
Completed
Last Updated: 24 Dec 2012 07:00 by ADMIN
The setup of ExpressionFormattingObject for inner GridViewTemplate not apply the conditional formatting to children rows
Completed
Last Updated: 21 Dec 2012 06:25 by ADMIN
Run the enclosed application and select the funnel icon in most right column "AKTIV" and select menu item "No filter". The application crashes. If you do the same using checkbox in filter cell, everything works fine.
Completed
Last Updated: 13 Dec 2012 03:41 by ADMIN
Wrong column name escaping in filter expression when the special symbols is used in the name like: "_x0000_", "_x0032_0", "_x0032_0_x0000_"  in the bound data schema
Completed
Last Updated: 20 Feb 2014 15:09 by ADMIN
After the delete, the item is removed from the BindingList, but it still appears in the RadGridView (or deleted a wrong item). The binding doesn't trigger the change in the UI/View.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Feature Request
1
change the localization provider for one gridview only (e.g. we have multiple different grids in our application, but I want to apply that custom RadGridLocalizationProvider selectively to only few of them)
Completed
Last Updated: 20 Feb 2013 06:42 by ADMIN
GridView “decimal column -          Current value “500”-          Input “1.2.3.4” Scenario case: 1.       Approaching to the target cell by “Mouse click directly on the input cell” then key in “1.2.3.4” and Enter à Display “500” as original value2.       Approaching to target cell by “Tab or moving cursor to input cell” then key in “1.2.3.4” and Enter à Display “1” as only display the first input digit only
Completed
Last Updated: 26 Feb 2014 12:08 by ADMIN
has no user validation, exception when the type of parent and child keys is different
Completed
Last Updated: 13 Nov 2015 14:55 by ADMIN
Advanced Property Grid in Property Builder filter the data source list and not show 'Project Data Sources' for selection in the DataSource popup.

There is a difference in the drop down Datasource selection between the :
    GridviewDataColumn Collection Editor      and the...
    RadGridView Property Builder
Completed
Last Updated: 17 Nov 2015 16:26 by ADMIN
The RadGridView is bound to DataView

Workaround: add row using the DataTable API:
private void radButton1_Click(object sender, EventArgs e)
{
    DataRow row = m_dvMat.Table.NewRow();
     row["Active"] = true;
     row["Category"] = form.m_sString;
     m_dvMat.Table.Rows.Add(row);
}
Completed
Last Updated: 29 Aug 2011 03:35 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
1
After updating a cell, the RowsChanged event fires 3 times
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.