Declined
Last Updated: 16 Oct 2023 11:15 by ADMIN
Created by: Xingyu
Comments: 2
Category: UI for .NET MAUI
Type: Feature Request
0
When testing Telerik UI for .NET MAUI, I found that the column names of the DataGrid do not support Chinese. Is there a solution?
Declined
Last Updated: 11 Jul 2023 17:10 by ADMIN
Created by: Gold Star
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0
We're using a MUAI Balzor template from VS 2022 that relies on .razor pages rather then xaml. Will a version of this be released that would support this project style? 
Declined
Last Updated: 15 Jun 2023 12:21 by ADMIN
Created by: Curtis
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0

I would like a control to handle Currency that works with the UICulture

 

In the US it would show the input as $ ____.00. or ____.00 (USD) based on UICulture

in other countries it would show the currency symbol based on the UICulture

 

This control should work will all other controls such as grid column input

Declined
Last Updated: 19 Apr 2023 13:17 by ADMIN
Created by: David
Comments: 3
Category: UI for .NET MAUI
Type: Feature Request
0
This is a useful control from UI for WPF, maybe it could make the jump to MAUI? 
Declined
Last Updated: 13 Mar 2023 14:24 by ADMIN
Created by: Legrand
Comments: 4
Category: UI for .NET MAUI
Type: Feature Request
0

What is the best way to load a byte[] (which is a jpeg file) in the ImageEditor.

Ideally I want to transform the byte[] to a Bitmap (easy), for storage purpose

            using Stream stream = new MemoryStream(e.Buffer);
            using Bitmap image = new Bitmap(stream);

And then display the bitmap, but I don't know how totransform it to an ImageSource.

Regards.

Declined
Last Updated: 10 Mar 2023 08:55 by ADMIN
Created by: Legrand
Comments: 2
Category: UI for .NET MAUI
Type: Feature Request
0

Is it possible to use GestureRecognizers in ImageEditor ? I tried this, but OnImageTapped is not called.

<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
             xmlns:versares="clr-namespace:SharedResources;assembly=SharedResources"
             x:Class="PalletGate.Views.SingleEditor">
    <Grid ColumnDefinitions="*">

        <telerik:RadImageEditor x:Name="imageEditor1" 
                        MinZoomLevel="0.1" 
                        MaxZoomLevel="20"
                        Grid.Column="0"
                        >
            <telerik:RadImageEditor.GestureRecognizers>
                <TapGestureRecognizer Tapped="OnImageTapped" />
            </telerik:RadImageEditor.GestureRecognizers>
        </telerik:RadImageEditor>
    </Grid>
</ContentView>

Code behind :

    private void OnImageTapped(object sender, TappedEventArgs e) {
        Point? position = e.GetPosition((Element)sender);

         Telerik.Maui.Controls.RadImageEditor? img = sender as Telerik.Maui.Controls.RadImageEditor;
    }

 

 

Declined
Last Updated: 09 Dec 2022 19:17 by ADMIN
Created by: Mounika
Comments: 2
Category: UI for .NET MAUI
Type: Feature Request
0
We need help with recalculating aggregates for DataGrid Columns as the Columns data changes.
Declined
Last Updated: 18 Nov 2022 15:28 by ADMIN

Hello,

TL;DR version - I request that the IFontElement interface (from Microsoft.Maui.Controls.Internals) be implemented on all Rad type controls that display text.

Detailed Version:

The CommunityToolkit.Maui.Markup nuget package provides some really nice extension methods that allow quick and easy configuring of controls without verbosity. When using the toolkit along side Telerik UI every extension I have tried works really well except for .Font(). On all standard MAUI controls you can just call the .Font() extension method and don't need to create a Style and apply it to an underlying property just to set a font size - you just set the size with .Font() as shown below. The below example code snippet shows the normal use of the toolkit on a standard MAUI Label and a RadTimeSpanPicker from the Telerik UI MAUI package.

The above example yields the following error, as does calling .Font() on pretty much every other Radxxxx control. Telerik UI controls seem to work really well with all the other extension methods I have tried from the toolkit except the .Font() extension method.

The type 'Telerik.Maui.Controls.RadTimeSpanPicker' cannot be used as type parameter 'TFontElement' in the generic type or method 'ElementExtensions.Font<TFontElement>(TFontElement, string?, double?, bool?, bool?)'. There is no implicit reference conversion from 'Telerik.Maui.Controls.RadTimeSpanPicker' to 'Microsoft.Maui.Controls.Internals.IFontElement'.

It would seem that implementing IFontElement would solve this.

This would be a nice feature and very helpful to anybody using the toolkit with Telerik controls because they could be used the same way as standard MAUI controls.

I looked under the hood a little bit and I believe the interface could/should be implemented on something like RadContentView which seems to be where most interfaces are inherited/implemented, and controls like RadTimePicker inherit from parent controls that eventually inherit from RadContentView.