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: 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: 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: 05 Mar 2024 20:51 by Hanoch

The DataGrid Search As You Type feature provides search text highlighting through the CellContentStyle property of the columns.  

CellContentStyle is taken into account only for the default columns, so when you specify a custom CellContentTemplate or use a TemplateColumn currently the search text highlighting is not applied.   

Unplanned
Last Updated: 16 Oct 2023 10:37 by Daniel
Created by: Daniel
Comments: 0
Category: DataGrid
Type: Feature Request
1
Provide customizable UI for adding and deleting rows in DataGrid.
Unplanned
Last Updated: 19 Oct 2023 10:23 by Jamison
Provide support for nested properties in the property aggregate descriptor.
Unplanned
Last Updated: 29 Jul 2022 14:36 by Deasun
Created by: Deasun
Comments: 0
Category: DataGrid
Type: Feature Request
1

Add text wrap formatting as the normal windows DataGrid control.

Unplanned
Last Updated: 23 Aug 2023 14:20 by Jamison

 Behavior on MacCatalyst:

1. Enter in Edit mode in any cell
2. Press Enter
3.Value is committed, but not moved to the next row

Additional note: The KeyDownCommand execute method does not fire on MacCatalyst when cell is in edit mode and Enter is pressed.

This is how it works on Windows

1. Enter in Edit mode in any cell
2. Press Enter
3. Values is committed and the current cell is moved to the next row cell in edit

Unplanned
Last Updated: 17 Oct 2022 10:27 by Craig

Footer is displaced when placing the datagrid into an expander. Issue appears only in certain devices and versions. Tested with Android 12, API 33, Pixel 5 Emulator also with Samsung Galaxy S22 Model: SM=S901U1, One UI Version 4.1, Android Version 12 and Samsung Galaxy Tablet -- Galaxy Tab S7 FE.

In addition, issue cannot be reproduced on Android 9 and Android 11.


Unplanned
Last Updated: 26 Mar 2024 14:42 by Blake
When you edit a DataGrid cell and while in edit mode click outside the DataGrid, the edit is not committed and the cell stays focused.
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: 25 Mar 2024 08:23 by Hanoch
Created by: Hanoch
Comments: 0
Category: DataGrid
Type: Feature Request
1
 I need to change the size of the DataGrid scrollbars to be wider and customize their color.
Unplanned
Last Updated: 28 May 2024 08:46 by Tinus

I have the following issues when there is a DataGrid inside RowDetails template

1. The + does not change to - after expanding the details

2. Clicking the header in the inner data grid of line 2 does not work (seems disabled)

3. Sometimes cannot edit the inner DataGrid. tapping 2 times on the cell does not enter in edit mode

Unplanned
Last Updated: 09 Apr 2024 09:35 by Huynh

It seems that the default fonts in the RadDataGrid do not support some languages, for example this text "이름" cannot be displayed in Android and WinUI. Rectangles are rendered instead of the correct symbols.

Note that a maui Label can properly display the text.

Unplanned
Last Updated: 29 Mar 2024 13:52 by Huynh
If the CellContentTemplate property of a column is used, and inside there is just one label, then the text of the label gets wrapped into two lines instead of being rendered in one line.
Unplanned
Last Updated: 19 Mar 2024 13:33 by JoPi
I would like to programmatically give a concrete cell the focus, such that the user can then navigate from the keyboard without having to manually select the cell with the mouse.
Unplanned
Last Updated: 30 Oct 2023 13:23 by Tomáš
When having a DataGrid in a ControlTemplate of a ContentView, data is not visualized. 

When setting the content initially, the Grid displays the data
Unplanned
Last Updated: 09 Oct 2023 13:04 by ADMIN
Created by: Legrand
Comments: 1
Category: DataGrid
Type: Bug Report
0
When typing to localize the text in the grouping panel, the localized string does not apply.
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: 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.