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.

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);

 

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

			
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)

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
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>


Unplanned
Last Updated: 24 Jan 2020 08:56 by ADMIN
Created by: Chris
Comments: 0
Category: DataGrid
Type: Feature Request
1
Add the ability to set an editor when using a template column.
Unplanned
Last Updated: 29 Nov 2019 14:19 by ADMIN
When starting a cell edit, it is desired to have all the text selected, so the user can easily replace the current text without having to delete it. 
Unplanned
Last Updated: 25 Oct 2019 11:08 by ADMIN
Created by: Mani
Comments: 1
Category: DataGrid
Type: Feature Request
2

I have designed  datagrid like weekly signin details
But i required datagrid with sub header like , 
Please provide better solution to design for sub header with main header

 

Unplanned
Last Updated: 24 Sep 2019 14:10 by ADMIN
Created by: Giovanni Rojas
Comments: 1
Category: DataGrid
Type: Feature Request
2

when using automatic column generation you don't have easy access to the column being created so that you can apply customizations (Header, style, etc).

Please implement the same event that UI for WPF has, see it here: https://docs.telerik.com/devtools/wpf/controls/radgridview/events/column-resize-event#autogeneratingcolumn

Unplanned
Last Updated: 15 Apr 2019 13:12 by ADMIN
Currently you can bind to SelectedItem but not the entire collection of SelectedItems. Being able to access the collection would greatly simplify programmatic selection and deselection of items in the DataGrid, especially with an MVVM project structure.
Unplanned
Last Updated: 07 Mar 2019 11:39 by ADMIN

SizeMode="Fill" for Xamarin.Forms datagrid column to fill the space left

e.g.

<radDataGrid:DataGridDateColumn PropertyName="Date" SizeMode="Fixed" Width="80" />
<radDataGrid:DataGridTextColumn PropertyName="Title" SizeMode="Fill"  />
<radDataGrid:DataGridNumericalColumn PropertyName="Score" SizeMode="Auto" />

=>

First column has width 80, 3rd column has width of content (already working)

NEW: Second column occupies the space left

Unplanned
Last Updated: 07 Mar 2019 07:12 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 2
Category: DataGrid
Type: Feature Request
11

			
Unplanned
Last Updated: 15 Feb 2019 14:28 by ADMIN
Created by: Graham
Comments: 1
Category: DataGrid
Type: Feature Request
4

Datagrid

 

Built in features for:

- Paging

        eg. https://demos.telerik.com/aspnet-mvc/grid/paging

- Search Panel

        eg. https://demos.devexpress.com/MVCxGridViewDemos/Filtering/SearchPanel

​- Sorting

        eg. https://demos.telerik.com/aspnet-mvc/grid/sorting

 

I am trying to replicate a part of our MVC application using xamarin.forms.
The forms  required will have a datagrid, when a row is clicked I want to open a pdfViewer.

These built in features would help me and others.

 

Regards,

Graham

 

Unplanned
Last Updated: 14 Feb 2019 08:11 by ADMIN
Created by: Rathish
Comments: 0
Category: DataGrid
Type: Feature Request
1
Provide an API for Custom Column
Unplanned
Last Updated: 08 Feb 2019 14:27 by ADMIN
Provide some API or an extension point for changing the default editor of the different types of built-in columns when edit mode is entered.
1 2