Unplanned
Last Updated: 09 Oct 2020 12:37 by ADMIN

Hello

I have often faced a scenarion where I have groups (GroupDescriptor), but those groups need to be ordered by a different property.

Usually, telerik column properties already provide a SortMemberPath.

<telerik:GridViewDataColumn DataMemberBinding="{Binding Name}" SortMemberPath="Id"


However, the GroupDescriptor does not have that, it only has Member and SortDirection.

The only way to set the sort to refer another property is in code behind using a generic group descriptor. It is very flexible, but it has several drawbacks, since now I'd have to declare everything in C# (aggregate functions, templates, etc) and also lose the Design time feedback from Visual Studio.

My request is to just have the possibility to set a SortMember in XAML which will work for most scenarios, same way as others components already do.

<telerik:GroupDescriptor Member="OrderState" SortDirection="Ascending"
                                         SortMember="OrderStateIndex" >

 

Thanks

Unplanned
Last Updated: 09 Oct 2020 12:04 by ADMIN
When the ItemsSource of the RadGridView is set to an implementation of ICollectionView, the Groups property is not utilized, since the groups are generated internally by the RadGridView. We can consider introducing support the Groups property to allow for grouping customizations.
Unplanned
Last Updated: 10 Aug 2020 13:18 by ADMIN
Created by: Tobias
Comments: 0
Category: GridView
Type: Feature Request
1
Evaluate GroupBy queries on the server when the data source allows it.
Unplanned
Last Updated: 03 Aug 2020 09:42 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Feature Request
9
Currently, the ControlPanelItem expose only standard CLR properties. Make them DependencyProperties so they can be data bound.
Unplanned
Last Updated: 29 Jul 2020 09:57 by ADMIN
Created by: Heiko
Comments: 1
Category: GridView
Type: Feature Request
4
When exporting there are several ways of telling the exporting class which column to exclude during export (through options or by cancelling the export of the column in an event). It would be easier if there was an "IsExportable" property on GridViewDataColumn so that the export can take that into account. No options or events would then be necessary when exporting.
Unplanned
Last Updated: 23 Jul 2020 10:27 by Graham
Created by: Tony
Comments: 4
Category: GridView
Type: Feature Request
3
Introduce a GridViewTimeSpanColumn for handling properties of the TimeSpan type.
Unplanned
Last Updated: 23 Jul 2020 08:58 by ADMIN
We can consider introducing functionality that allows users to conditionally style/format the control in a similar manner as the WinForms feature: https://docs.telerik.com/devtools/winforms/controls/gridview/cells/conditional-formatting-cells.
Unplanned
Last Updated: 23 Jul 2020 08:08 by ADMIN
Created by: Heiko
Comments: 1
Category: GridView
Type: Feature Request
7

Using SearchPanel and getting search results highlighted is a very usefull feature. However at the moment it is only possible to change the color of the highlight-portion of HighlightTextBlock. It would be nice if I have more formatting options like:

  • HighlightFontWeight
  • HighlightFontStyle

etc. So if I search for "find" I get results like "find me"

Unplanned
Last Updated: 15 Jul 2020 12:22 by ADMIN
Provide a way to change the ItemsSource of the control while it is exporting using SpreadStreamExport.RunExportAsync() method
Unplanned
Last Updated: 30 Jun 2020 12:19 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Feature Request
1
Currently, when you scroll the RadGridView control the "click here to add new row" button goes out of the viewport. Allow to pin the button, so it float at the top or bottom of the viewport and to be always visible.
Unplanned
Last Updated: 22 Jun 2020 08:18 by ADMIN
The user wants an API with which he can set a formula. For example, the string "=A1+B1" will be translated in Excel like a formula.
Unplanned
Last Updated: 03 Jun 2020 09:50 by LindenauAtSOG
Implement a way to group columns cells vertically.
Unplanned
Last Updated: 27 Apr 2020 08:25 by ADMIN
Add support for different merged cells orientation - MergedCellsOrientation.Mixed could be added.
Unplanned
Last Updated: 20 Apr 2020 11:44 by ADMIN
Apply sort/filter/group. Add option so that user can disable the UI update and be able to add new items, remove existing ones, change values so that UI is not updated. For example new item is on top of the sorted ones. Edite item does not change its place until sorting is reapplied/ resumed.
Unplanned
Last Updated: 02 Mar 2020 07:38 by ADMIN
When using Search as You Type behavior, the items will be first filtered using the keywords typed in the TextBox. We can create a way to disable this filtering.
Unplanned
Last Updated: 31 Jan 2020 14:39 by ADMIN
Unplanned
Last Updated: 08 Jan 2020 09:32 by ADMIN
Created by: Dinko
Comments: 0
Category: GridView
Type: Feature Request
5
There is not a dedicated UI that allows hiding showing columns. You can achieve this using Control Panel functionality.
Unplanned
Last Updated: 23 Dec 2019 07:22 by ADMIN
Created by: Dinko
Comments: 0
Category: GridView
Type: Feature Request
5
A property like FilterMemberPath could be created. This way, we can control which property will be used by the Search As Type functionality.
Unplanned
Last Updated: 04 Nov 2019 12:59 by ADMIN

Hi,

I have been working wit the RadGridView for about 6 years now and it works great!

The only thing that still bugs me after all these years is the GridViewComboBoxColumn. The sorting and "Search as you type" features are not working for us. The fact that it uses the DataMemberBinding is something we do not get.

The fact that it is not ordered or searched into the shown value instead of the DataMemberPath is beyond me.

I mean, why would I, as a user, want to search into or sort a value that is not visible to me?

 

Adding a feature like a string property on the GridViewComboBoxColumn that is used for displaying, searching, filtering and sorting would be awesome!

The filter's distinct values work well, but the field filters show the enum value and that's not good.

 

I have attached a sample project to demonstrate the problems with sorting, filtering and searching.

There are also print screens attached to clarify each feature mentioned

Thanks!