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: 08 Jun 2023 15:21 by Laurin

TapGestureRecognizer not working correctly when tapping inside the DataGrid control on iOS and MacCatalyst platforms.

Workaround:

You could use CellTap or CellDoubleTap commands of the DataGrid control. Here are the links to our documentation articles: DataGrid Commands and DataGrid CellTap Command.

Unplanned
Last Updated: 05 Jun 2023 14:07 by Teddy
Created by: Teddy
Comments: 0
Category: DataGrid
Type: Feature Request
7
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: 18 Apr 2024 08:22 by ADMIN
Created by: Sanket
Comments: 1
Category: DataGrid
Type: Feature Request
6
Provide a RowStyleSelector property to 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: 18 Apr 2023 09:01 by Clint

When a Picker is used in a CellEditTemplate, and when in edit mode, when I click on the arrow of the Picker - the picker does not open. It only opens of I click the text in the Picker.


        <DataTemplate x:Key="template1">
            <Picker ItemsSource="{Binding Item.Categories}" />
        </DataTemplate>

        <telerik:RadDataGrid x:Name="dataGrid"
                             AutoGenerateColumns="False">
            <telerik:RadDataGrid.Columns>
                <telerik:DataGridTextColumn PropertyName="Name" />
                <telerik:DataGridTextColumn PropertyName="Category" CellEditTemplate="{StaticResource template1}" />
            </telerik:RadDataGrid.Columns>
        </telerik:RadDataGrid>

 

A work-around is to not use a Picker, but use a RadComboBox.

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: 31 Jan 2024 02:50 by Fred

When navigating to DataGrid examples, xaml binding errors occur for ActualWidth and Header Text. 

Still, the app runs as expected. 

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: 10 Mar 2023 14:38 by Vojtěch

IsCaseSensitive property doesn't work in the DataGrid control.

Workaround: Use Programmatic Filtering 

Example: https://github.com/telerik/maui-samples/tree/main/Samples/SdkBrowser/Examples/DataGridControl/FilteringCategory 

Disable the built in filtering UI and apply a custom UI with programmatic filtering.

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.