Unplanned
Last Updated: 21 Jul 2022 07:41 by ADMIN
Created by: Christopher
Comments: 1
Category: GridView
Type: Feature Request
0
We are using telerik:RadGridView.RowDetailsTemplate in our GridView and we need the ability to expand or contract all rows at the press of a button.  As in the demo code under Hierarchy, we need to do this from our ViewModel.  Can the IsExpandedBinding be implemented for this use case in addition to when using hierarchical data?  
Unplanned
Last Updated: 22 Jun 2022 10:31 by Martin Ivanov
Currently, the elements in the row details are measured with infinity size. This means that if you want to limit the content within the available space of the row, you will need to set the Width of the content manually. Add a mechanism that allows you to alter this behavior and measure the child content with the available space.
Unplanned
Last Updated: 23 May 2022 15:11 by Margret

Currently, the range of the ScaleFactor property is between 0.1 and 4.0. We could include API to allow the user to set minimum and maximum boundaries that are between the default range (0.1 and 4.0).

For example:

  • MinimumScaleFactor=0.8 
  • MaximumScaleFactor = 1.5
Unplanned
Last Updated: 01 Apr 2022 09:40 by Martin Ivanov
Add a method that allows you to start a cell animation when its content (the bound property of the underlying data item) changes. 
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: 23 Mar 2022 10:49 by Martin Ivanov
Currently, the FilteringControl orders its filters in a StackPanel with a vertical orientation, which means that the distinct values list is placed above the field filters. Add an option to allow changing the position of the distinct values to the left or right (consider also bottom).

This is useful if you want a more compact view. Also, the feature will resolve several corner cases where the screen doesn't have enough vertical space for the Popup and its contents get clipped.
Unplanned
Last Updated: 25 Jan 2022 07:27 by ADMIN
Currently, if you have a SelectedItem assigned and you try to set the SelectedItem property to an object that is not presented in the current data view, the control keeps the previously selected item. For example, if you have items 1, 2 and 3 where 1 is selected, and you try to select 4, nothing will happen.

By "current data view" I mean the items that are left in the GridView's Items collection. Those exclude the items that don't match the filtering or search criteria if such is applied.

Add a property that allows you to change this behavior. In case the assigned item cannot be selected, the selection should be cleared. 
Unplanned
Last Updated: 21 Jan 2022 17:44 by Alexandr
Currently, when you click on a cell in the row, the cell or the row get selected (based on the SelectionUnit). Also, the current cell is changed, which can be indicated by the border added to the clicked cell.

Add a mechanism to disable this functionality. For example, a new property on the cell (ex: CanUserSelect) that prevents selection and currency change on cell click. 
Unplanned
Last Updated: 21 Dec 2021 09:26 by ADMIN
Created by: Stenly
Comments: 0
Category: GridView
Type: Feature Request
3
Currently, the RadGridView control does not provide an API for copying its column groups.
Unplanned
Last Updated: 21 Sep 2021 11:58 by ADMIN
At this moment, the Search As You Type functionality can be customized. We can expose several methods so that the user can override the default search behavior and implement their own.
Unplanned
Last Updated: 15 Apr 2021 07:54 by Moon
Created by: Dinko
Comments: 1
Category: GridView
Type: Feature Request
2
For example, we can create the SUM() function for the cells in the ViewPort.
Unplanned
Last Updated: 22 Mar 2021 18:30 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Feature Request
2
The row arrangement is implemented correctly, but because of rounding errors, gaps and rows overlapping may appear during the WPF render phrase. This happens if the boundaries of the row containers use too high precision for its values (top, left, bottom, right). Consider improving this by rounding the boundary values before calling the Arrange() method of the row's container.
Unplanned
Last Updated: 11 Mar 2021 17:22 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Feature Request
2
Add a separator element under the last pinned row, similar to the frozen columns splitter. The visual could be e horizontal line shown at the bottom border of the row.
Unplanned
Last Updated: 11 Mar 2021 17:06 by ADMIN
Currently, the splitter is drawn with few pixels and a background color based on the current Telerik theme. Add an API like a Style or another type of property that allows you to change the default color and width of the splitter.
Unplanned
Last Updated: 23 Feb 2021 08:11 by ADMIN
Created by: Dinko
Comments: 0
Category: GridView
Type: Feature Request
2

You are able to resize columns using the columns gripper. The corresponding group will be automatically resized. We can provide a way to resize the column groups. The columns inside the group will be automatically resized with the group.

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: 17 Dec 2020 11:52 by ADMIN
Created by: Heiko
Comments: 2
Category: GridView
Type: Feature Request
2
The GridViewSelectColumn is a very nice and useful feature, especially the possibility to select all items with just one click on the header. It would be great if there was the same functionality for the group header. So clicking on a checkbox in group header will select all items in this group (only). I know there are some examples (many years old) of how to do this, but it would be much better if it worked out-of-the-box.
Unplanned
Last Updated: 10 Nov 2020 11:13 by ADMIN
We can implement drag-scroll behavior when dragging column across the headers section of the columns.
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: 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