Unplanned
Last Updated: 03 Jan 2024 14:08 by Legrand
Created by: sorg
Comments: 8
Category: UI for .NET MAUI
Type: Feature Request
10
I'm looking for a control for .net maui for cross-platform desktop development that lets you resize the different sections of your user interface like the GridSplitter control does in WinUI.
Unplanned
Last Updated: 28 Apr 2023 17:38 by ADMIN
Created by: David
Comments: 3
Category: UI for .NET MAUI
Type: Feature Request
0
Although documentation for RadScrollview appears to exist only in the API, I have found its ability to support both Horizontal and Vertical scrollbars simultaneously quite useful in Windows and Android. Unfortunately it seems to fail in iOS. Can Apple platforms also be supported? Could RadScrollview documentation be added into places other than just the API? Could it be made styleable?
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? 
Unplanned
Last Updated: 12 Apr 2023 13:08 by Scott
Created by: Scott
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
2
Add Header and Footer template in AutoComplete control.
Duplicated
Last Updated: 27 Mar 2023 16:13 by ADMIN
Created by: Mir
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0
Can I find out more details about the upcoming features in the PDFViewer Control and when it be available?
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.

Unplanned
Last Updated: 10 Mar 2023 10:24 by ADMIN

Is there a way to retrieve a pixel of the image in the imageEditor when clicking on it

I could implement something working well , but not when the image is zoomed or moved in the editor 

        public static Point Calc_Coordinates(double w_image, double h_image, double w_container, double h_container, double click_x, double click_y) 
        {
            Double zoomW = (w_container / w_image);
            Double zoomH = (h_container / h_image);
            Double zoomActual = Math.Min(zoomW, zoomH);

            Double padX = zoomActual == zoomW ? 0 : (w_container - (zoomActual * w_image)) / 2;
            Double padY = zoomActual == zoomH ? 0 : (h_container - (zoomActual * h_image)) / 2;

            Point res = new Point();

            res.X = (Int32)((click_x - padX) / zoomActual);
            res.Y = (Int32)((click_y - padY) / zoomActual);

            //
            if (res.X < 0 || res.X > w_image) { res.X = -1};
            if (res.Y < 0 || res.Y > h_image) { res.Y = -1};
            return res;
        }
Duplicated
Last Updated: 10 Mar 2023 09:54 by ADMIN
Created by: David
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0

Desired: Sample self-contained Maui or Maui/Blazor Reporting solution.

Background:

My Maui/Blazor app currently uses another vendor's Blazor Report Viewing tool, but that only compiles in Android and Windows. Viewer and Designer run in the same project and do not require a remote service.

Reports were previously designed in a WPF project using same vendor, but he says he has no plans to fully support Blazor use in Maui.

As I already have access to Telerik reporting, I would love to upgrade and view my reports using your Reporting, but I have yet to locate any Maui-specific instructions. Report Viewing should work without requiring any service outside the solution.

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

 

 

Unplanned
Last Updated: 06 Mar 2023 08:53 by ADMIN
Created by: Teddy
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
4
In the WPF Combo Box, in addition to the SelectedItem property, there was also the SelectedValue and SelectedValuePath properties. You could bind to a complex object and then define a SelectedValue and SelectedValuePath so that your binding context didn't need to keep a reference to the entire object being represented in the dropdown. Very useful, for example, when your BindingContext does not have access to the object bound to the combobox's items source, but can instead keep track of a common enum or just a unique string instead. Is there any plan to add that functionality to the MAUI combo box?
Unplanned
Last Updated: 28 Feb 2023 22:09 by Peter
Created by: Peter
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
3

Hi Team,

I would like to be able to have client-side filtering/sorting/grouping capabilities for large backend datasets that cannot be entirely loaded on the client.

As it stands now, the DataGrid (and other data components) can only operate on the data that is has in the local DataView. This means that I need to build a custom filtering solution that prefilters/presorts the backend data before paging and loading it into the DataGrid.

To accomplish the "full view", we need a data layer that understands both the UI as well as the backend. The Telerik UI for WPF product has an excellent solution for this, known as the WPF EntityFrameworkCoreDataSource - Overview - Telerik UI for WPF and the WPF DataServiceDataSource - Overview - Telerik UI for WPF.

If such a feature can be added to Telerik UI for MAUI, it would be an excellent bonus for the component suite in data heavy applications.

Thank you,

Peter

 

Unplanned
Last Updated: 27 Nov 2023 09:15 by Nico
Created by: Nico
Comments: 4
Category: UI for .NET MAUI
Type: Feature Request
3
For desktop users, it would be great if the Entry field of the Date/DateTime/Time Picker (which is currently readonly) had a MaskedInput mode so they can enter the date directly with the keyboard
Unplanned
Last Updated: 03 Feb 2023 15:58 by almostEric
Created by: Tavi
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
1
Provide a transition control for .net maui
Unplanned
Last Updated: 25 Jan 2023 08:32 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
0
Provide a wizard control for .net maui
Unplanned
Last Updated: 25 Jan 2023 08:23 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
0
Provide a tile list control for .net maui
Unplanned
Last Updated: 25 Jan 2023 07:58 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
1
Provide a diagram control similar to wpf.
Unplanned
Last Updated: 25 Jan 2023 07:04 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
0
add task board control similar to wpf control.
Unplanned
Last Updated: 25 Jan 2023 07:02 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
0
provide a timebar control for .net maui
Unplanned
Last Updated: 14 Apr 2023 10:10 by ADMIN
Created by: Tavi
Comments: 2
Category: UI for .NET MAUI
Type: Feature Request
2
Provide a property grid control.
Unplanned
Last Updated: 25 Jan 2023 06:54 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
0
Provide Callout control for mobile and desktop, similar to wpf control.