Unplanned
Last Updated: 19 Sep 2023 14:04 by Ilker

Provide a style property for the text in grouping panel. Currently you can style the border, background color and change the header text of the panel. For example:

<Style TargetType="telerik:DataGridGroupingPanel">
    <Setter Property="BackgroundColor" Value="Red"/>
    <Setter Property="HeaderText" Value="Hello to group"/>
    <Setter Property="CornerRadius" Value="10"/>
    <Setter Property="BorderThickness" Value="2"/>
    <Setter Property="BorderColor" Value="Blue"/>
</Style>

Unplanned
Last Updated: 11 Sep 2023 13:43 by Ilker
DataGridBorderStyle and DataGridCellStyle classes do not support property binding.
Unplanned
Last Updated: 09 Aug 2023 08:39 by Craig
Currently, the users can select a row/cell by tapping on it. In RadListView there is also a SelectionGesture property which specifies on what gesture - tap or tap & hold the selection is triggered. It could be useful to add long press/hold gesture on DataGrid row/cell
Unplanned
Last Updated: 09 Aug 2023 08:31 by Craig
Created by: Craig
Comments: 0
Category: DataGrid
Type: Feature Request
0
Add option to swipe the DataGrid row. Similar to what you have for ListView. 
Unplanned
Last Updated: 21 Jul 2023 11:51 by Jamison
Provide an option to change the keyboard navigation in the DataGrid control.
Unplanned
Last Updated: 14 Jul 2023 15:39 by Christian
Created by: Christian
Comments: 0
Category: DataGrid
Type: Feature Request
1

Hi Team,

Please add support for multiple row column headers. As an example of what I'm referring to, see the Telerik UI for Blazor implementation here => Blazor DataGrid Demos - Multi-Column Headers | Telerik UI for Blazor

Thank you,

Christian

Unplanned
Last Updated: 03 Jul 2023 19:46 by Clint
Created by: Clint
Comments: 0
Category: DataGrid
Type: Feature Request
3

Hi Team,

I would like to have an external column chooser for the DataGrid. Where that chooser would be populated with the possible columns, and the user would elect/deselect what columns they want in the DataGrid.

Thank you,

Clint

Unplanned
Last Updated: 03 Jul 2023 19:11 by Clint
Created by: Clint
Comments: 0
Category: DataGrid
Type: Feature Request
1

Hi Team,

I would like to see this feature implemented for the UI for Maui DataGrid => WPF DataGrid - Save/Load Settings - Telerik UI for WPF

I want my users to be able to save their current grouping/filtering/etc. settings just like the PersistenceFramework can do it for the WPF GridView.

Thank you,

Clint

Unplanned
Last Updated: 12 Jun 2023 20:07 by David
Created by: Hanoch
Comments: 4
Category: DataGrid
Type: Feature Request
10
Provide the option to add paging functionality at the bottom of the DataGrid, so data will be loaded in portions.
Unplanned
Last Updated: 05 Jun 2023 14:07 by Teddy
Created by: Teddy
Comments: 0
Category: DataGrid
Type: Feature Request
6
Extend the SizeMode functionality of DataGridColumn by adding a Star mode. This mode should behave like the Star of the Grid layout and resemble the functionality of the WPF RadGridView which is described here: https://docs.telerik.com/devtools/wpf/controls/radgridview/columns/columns-width#on-column-level
Unplanned
Last Updated: 17 May 2023 11:37 by Uvin
Created by: Uvin
Comments: 0
Category: DataGrid
Type: Feature Request
3
Add RightToLeft support for the DataGrid control.
Unplanned
Last Updated: 12 May 2023 05:22 by Slawomir
Created by: Slawomir
Comments: 0
Category: DataGrid
Type: Feature Request
2
Provide a pull to refresh gesture like in RadListView control.
Unplanned
Last Updated: 10 May 2023 10:32 by Teddy
Created by: Teddy
Comments: 0
Category: DataGrid
Type: Feature Request
3
In the MAUI RadDataGrid, there should be a way to listen for right-clicks within columns/rows and get info of the cell that was right-clicked.
Unplanned
Last Updated: 20 Apr 2023 08:36 by Dav
Created by: Dav
Comments: 1
Category: DataGrid
Type: Feature Request
2

Provide a user commands as RadListView that you could directly bind in the ViewModel.

Solution: 

Enhance the DataGridCommand class as a user command and in this way bind it to the defined commands inside ViewModel/ContentPage. - Sample project attached

Unplanned
Last Updated: 29 Mar 2023 14:44 by Daniel
Created by: Daniel
Comments: 0
Category: DataGrid
Type: Feature Request
1

Hi Team,

I would like to be able to programmatically invoke a ToolTip on a specific cell.

 

It would be great if you were able to allow us to use a DataGridCellInfo item and string or View content for the tooltip (like UI for WPF allows)

var cellInfo = new DataGridCellInfo(rowToSelect, columnToSelect);

// Option 1 - Quick and easy
var stringContent = "I'm a tooltip";
MyRadDataGrid.ShowTooltip(cellInfo, stringContent);


// Option 2 - For everyone who needs more than just a string.
var customContent = new HorizontalStackLayout();
customContent.Children.Add(new Image{ Source = new FileImageSource{File = "warning.png"}});
customContent.Children.Add(new Label{Text = "I'm a tooltip"});

MyRadDataGrid.ShowTooltip(cellInfo, customContent);

 

Unplanned
Last Updated: 29 Mar 2023 13:44 by Matthew
Created by: Matthew
Comments: 0
Category: DataGrid
Type: Feature Request
4
Expose Column Reordering events.
Unplanned
Last Updated: 22 Mar 2023 21:52 by ADMIN
Created by: Craig
Comments: 2
Category: DataGrid
Type: Feature Request
5
Add a MaximumWidth property to the DataGrid Column in the DataGrid control.
Unplanned
Last Updated: 16 Mar 2023 16:20 by Teddy

Provide an option to sort the template column by nested property. 

For example: 

<dataGrid:DataGridTemplateColumn>
    <dataGrid:DataGridTemplateColumn.CellContentTemplate>
        <DataTemplate>
            <Label Text="{Binding MyAddress.City}" />
        </DataTemplate>
    </dataGrid:DataGridTemplateColumn.CellContentTemplate>
    <dataGrid:DataGridTemplateColumn.SortDescriptor>
        <dataGrid:PropertySortDescriptor PropertyName="MyAddress.City"  />
    </dataGrid:DataGridTemplateColumn.SortDescriptor>
</dataGrid:DataGridTemplateColumn>

Unplanned
Last Updated: 14 Mar 2023 15:03 by Vojtěch
Created by: Vojtěch
Comments: 0
Category: DataGrid
Type: Feature Request
2
I work on Maui Windows application and I use Telerik Maui Grid control. Current column filtering in this component is not bad but is not as user-friendly as Filter Row in Grid for Winforms. Can I create something like a Filter row in Grid for Winforms? Or have you a plan for adding it in the future to the Maui Grid component yourself?
Unplanned
Last Updated: 03 Mar 2023 08:01 by Erik Damgaard
Created by: Erik Damgaard
Comments: 0
Category: DataGrid
Type: Feature Request
3
I would like to apply hover effect for filter icon.