Unplanned
Last Updated: 12 Dec 2023 16:33 by Jesserine
Created by: Shawn
Comments: 8
Category: DataGrid
Type: Feature Request
20
My mobile app requires that my data grid have frozen columns on the left that do NOT scroll horizontally.  This is useful when the first column might be an ID column or a Date column that the user always needs to see when scrolling through the other data columns.
Unplanned
Last Updated: 30 Oct 2023 07:44 by Afshin
Created by: Afshin
Comments: 0
Category: DataGrid
Type: Feature Request
0
Provide a RowStyleSelector property to the DataGrid control.
Unplanned
Last Updated: 29 Jun 2023 19:34 by Christopher

Provide an option to programmatically reset the ordering of the columns in the DataGrid after reordering them using the Options-> more button

 

There isn't a command which can be used for resetting the column reorder.

Completed
Last Updated: 08 Jun 2023 08:15 by ADMIN
Release R2 2023
Created by: Stefan
Comments: 0
Category: DataGrid
Type: Feature Request
4
Add the ability to specify a Template that should be shown when the DataGrid is empty.
Unplanned
Last Updated: 29 Mar 2023 18:01 by Rodney
Created by: Rodney
Comments: 0
Category: DataGrid
Type: Feature Request
1

Hi Team,

Currently, you have ScrollItemIntoView support. However, that does not work unless you have rows and a reference to the data item.

I need an explicit mechanism to pick a specific X/Y cell position, or at least a column index, that can be scrolled to so that I can have horizontal scrolling capability.

For example, imagine a DataGrid that has only one row, but a 100 columns, I would like to be able to do this:

// Option 1 - Use the ItemsSource column reference
var dataTableColumn = this.myDataTable.Columns[50];
this.MyDataGrid.ScrollIntoView(dataTableColumn);

// Option 2 - Better!  
// This supports any possible data source type
var telerikColumn = this.MyDataGrid.Columns[50];
this.MyDataGrid.ScrollIntoView(telerikColumn);

// Option 3 - Ideal
// Useful for every possible occasion
var x = 5;
var y = 12;
this.MyDataGrid.ScrollIntoView(x, y);

 

Completed
Last Updated: 27 Jan 2023 11:38 by ADMIN
Release R1 2023
ADMIN
Created by: Stefan Nenchev
Comments: 3
Category: DataGrid
Type: Feature Request
21

			
Completed
Last Updated: 14 Sep 2022 13:49 by ADMIN
Release R3 2022
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: DataGrid
Type: Feature Request
20

			
Completed
Last Updated: 14 Sep 2022 13:48 by ADMIN
Release R3 2022
Created by: Rémi
Comments: 2
Category: DataGrid
Type: Feature Request
8

For Aggregates purpose or just for diplaying some others datas, footer for column in DataGrid it's needed feature.

Completed
Last Updated: 11 May 2022 14:47 by ADMIN
Release R2 2022
ADMIN
Created by: Yana
Comments: 1
Category: DataGrid
Type: Feature Request
15

			
Unplanned
Last Updated: 21 Mar 2022 13:03 by ADMIN
ADMIN
Created by: Yana
Comments: 4
Category: DataGrid
Type: Feature Request
12

			
Completed
Last Updated: 19 Jan 2022 13:20 by ADMIN
Release R1 2022
It would be nice if we can just bind a .net DataTable or DateView as ItemsSource to the RadDataGrid.
Unplanned
Last Updated: 21 Sep 2021 12:29 by Rajesh
Created by: Marko
Comments: 1
Category: DataGrid
Type: Feature Request
6
Unplanned
Last Updated: 14 May 2021 10:12 by ADMIN

In case there are more columns inside the DataGrid, a horizontal scrollbar appears when a user swipes left. However, sometimes it' not clear there are more columns further on the left. For example, when you define a column's width with a big value or when the number of first 5 columns fit perfectly with a device's width totally by coincidence. In those cases, it'll be helpful to display horizontal scrollbar by default so the user knows there're more information on the left. (Very similar to a vertical scrollbar)

Completed
Last Updated: 05 Feb 2021 13:02 by ADMIN
Release R1 2021
ADMIN
Created by: Lance | Manager Technical Support
Comments: 5
Category: DataGrid
Type: Feature Request
4
Currently, hiding the 'more' button in the of the DataGrid filter Options panel is not possible.

This is a feature request to add such an option to the DataGrid column styling options (potentially as a property of the HeaderStyle).
Completed
Last Updated: 21 Jan 2021 12:32 by ADMIN
Release R1 2021
Unplanned
Last Updated: 30 Sep 2020 13:34 by ADMIN
Created by: Gustavo
Comments: 1
Category: DataGrid
Type: Feature Request
2
 Add the capability to apply separate SortDescriptors per Group
Completed
Last Updated: 13 May 2020 14:17 by ADMIN
Release R2 2020
Provide a way to associate a FilterDescriptor with a TemplatedColumn
Unplanned
Last Updated: 23 Apr 2020 09:08 by ADMIN
ADMIN
Created by: Yana
Comments: 2
Category: DataGrid
Type: Feature Request
12

			
Unplanned
Last Updated: 29 Jan 2020 13:56 by ADMIN
Created by: Chris
Comments: 1
Category: DataGrid
Type: Feature Request
2
Currently, Datagrid Columns do not have a Style property. This makes setting the style for multiple data grid columns cumbersome since the styles must be set on each column. If DataGridColumn could extend NavigableElement or have a bindable style property then the following XAML could be used to set the column styles on an entire table.

<Style TargetType="telerikGrid:DataGridColumn">
        <Setter Property="HeaderStyle">
            <telerikGrid:DataGridColumnHeaderStyle TextFontSize="11" TextFontAttributes="Bold" BorderThickness="1" BorderColor="LightGray"/>
        </Setter>
        <Setter Property="CellContentStyle">
            <telerikGrid:DataGridTextCellStyle FontSize="10"/>
        </Setter>
 </Style>


Declined
Last Updated: 24 Jan 2020 09:10 by ADMIN

The DataGrid has the ability to add custom controls to the cell via Template columns; however, the contents of the cell are always visible and there is no way to distinguish between editing and display modes like you can with the type data columns. Furthermore, it may be desirable to create custom column types as the reusability would be easier than using a template or a template selector.

Currently, the DataGrid columns are public and unsealed; however, much of their internals are marked as internal. For example, overriding the CreateCellArranger method would allow custom editor types when the cell is edited. This would require exposing the CellArranger base classes as well.

Please mark more of the internals as public so that truely custom DataGridColumns can be created.

1 2 3