Unplanned
Last Updated: 26 Sep 2023 19:08 by alex
ADMIN
Created by: Stefan Nenchev
Comments: 2
Category: GridView
Type: Feature Request
6

			
Unplanned
Last Updated: 07 May 2019 15:52 by Anthony

The built-in export capabilities for the RadGridView are clunky and not well though out. Additionally, it doesn't fully support exporting hierarchical child data. (You can do it, but you have to go through a good bit of song and dance for something that I've seen other tool sets do automatically.)

I'd like to see the option fully baked that doesn't require code-behind (allowing an MVVM approach). And asynchronous methods that uses standard async-await conventions.

Unplanned
Last Updated: 06 Mar 2018 16:01 by ADMIN
ADMIN
Created by: Yoan
Comments: 6
Category: GridView
Type: Feature Request
5

			
Unplanned
Last Updated: 24 Jan 2024 08:48 by ADMIN
Blind users or users with visual impairments can only hear the unlocalized (english) text in the RadGridView Filter when using ScreenReaders.
Unplanned
Last Updated: 19 Jun 2017 13:36 by ADMIN
Add a property to control GridView ControlPanelItem visibility.
Unplanned
Last Updated: 03 Aug 2016 13:07 by ADMIN
ADMIN
Created by: Dimitrina
Comments: 0
Category: GridView
Type: Feature Request
5
When the ScrollMode is set to Deferred, then only the vertical ScrollBar shows a position indicator. The same is requested on horizontal scrolling.
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: 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: 15 Aug 2017 08:31 by ADMIN
Created by: Sam
Comments: 2
Category: GridView
Type: Feature Request
5
By default, the RadGridView will expand its rows to fit whatever the size of the text content. If you have a large amount of text with newlines, it essentially renders the grid unusable in this state.

The thread http://www.telerik.com/forums/limit-row-height suggests two workaround: 1) using a converter to remove newlines- this is a bad solution because it means the binding on the column must be one-way. 2) Applying styling to the grid's textblock- also not great because its non-obvious and requires a lot of boilerplate.

My suggestion is two properties on the RadGridView: MaxRowHeight and MultilineRowContentBehavior. This second property would determine what happens when a row has multiline content and would take an enumeration: SizeHeightToContent- the current behavior. SingleLineExpandOnEdit- when displaying, shows only a single line of the multiline content. When editing, expands the TextBox to fit the content. SingleLine- displays and edits the content in a single line.
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: 06 Mar 2018 15:59 by ADMIN
The default merging algorith merges adjacent cells with the same value. An option for preventing cells merging despite their value, should be provided.
Unplanned
Last Updated: 19 Jul 2018 15:29 by Michael
ADMIN
Created by: Ivan Ivanov
Comments: 5
Category: GridView
Type: Feature Request
4

			
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: 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: 18 Feb 2021 08:33 by ADMIN

At the moment the GridViewNewRow can be placed at the top or at the bottom. Placing it between the rows will require new virtualization mechanism. 

Unplanned
Last Updated: 31 Oct 2016 12:52 by ADMIN
Unplanned
Last Updated: 04 Apr 2022 13:35 by ADMIN
Created by: CB
Comments: 1
Category: GridView
Type: Feature Request
4

Currently the filters for the RadGridView only allows 2 filters. It would be very helpful for the default filter popout to have the option to add additional filters.

Current filter popout:

 

Filter popout with ability to add additional filters via an Add Filter button:

Competitor's GridView controls have this feature already and it would be very useful to have this feature on the RadGridView control. 

Unplanned
Last Updated: 03 Aug 2016 13:13 by Paul Grothe
ADMIN
Created by: Yavor Georgiev
Comments: 2
Category: GridView
Type: Feature Request
4
Currently, when a user selects multiple rows, but skips a few, and then copies, the data in the Clipboard will look as if the selected rows were in an uninterrupted sequence. Unselected columns, on the other hand, leave a "hole" in the clipboard data. This
Unplanned
Last Updated: 09 Aug 2016 06:43 by ADMIN
Add Option to disable autoBring into View the focused RadGridView unit.