In Development
Last Updated: 05 Sep 2024 13:30 by ADMIN
If you type, for example, `3.3` into the numeric input, then press the backspace once, this becomes `3` instead of `3.`.
In Development
Last Updated: 05 Sep 2024 09:47 by ADMIN

This was a regression when I upgraded to 7.1.0. 

Before, when the editor was empty and had a height set, you could tap anywhere to start editing.  Now, I can only start editing by tapping the top of the editor.

I tested this only on Android.

Unplanned
Last Updated: 03 Sep 2024 14:36 by Jamison
Frozen columns sometimes do not display their content when quickly navigate from and back to the page with the DataGrid on Windows.
Unplanned
Last Updated: 03 Sep 2024 11:35 by ADMIN
Created by: Larry
Comments: 4
Category: Entry
Type: Feature Request
24

I'm looking to replace the Xamarin RadRichTextEditor control in my Maui app. The Maui native Editor control is good but doesn't scroll.

And to be honest, the RadRichTextEditor gave me more trouble than it was worth (I loved the functionality, but it wasn't a good fit for my implementation).

So, adding the appropriate support to RadEntry to make it more of a 'multiline text editor' or even a 'mini word processor' would be awesome.

Unplanned
Last Updated: 03 Sep 2024 10:25 by Erik Damgaard
On Samsung devices the numeric keyboard has the dot and minus sign on same button. When using the numeric masked entry I cannot enter "-" and "." signs.
Unplanned
Last Updated: 02 Sep 2024 16:23 by Ramin
Currently when the user taps outside the non-modal popup, the popup is dismissed. We'd need to provide a way to set focus to input fields in the page without removing/closing the popup.
Unplanned
Last Updated: 30 Aug 2024 12:20 by Eugenio

I can load an image and then  resize it . But if I save it as a docx document and the I reload it, the image has the original size: the resized image is not saved.

 

You can test this in the Telerik MAUI ControlsSamples app, Import export example of the RichTextEditor control.

Unplanned
Last Updated: 30 Aug 2024 10:10 by Riziq
Created by: Riziq
Comments: 0
Category: NavigationView
Type: Feature Request
1

When Flow Direction is changed to right to left, on Android the control does not behave as expected. 

Provide support for right to left. 
On Android there is an issue with the navigation items. 

On WinUI it works

Unplanned
Last Updated: 30 Aug 2024 09:56 by Alex
When reordering items in the ListView sometimes the user might want the item to go to the end of a long list. It is not possible, because the ListView does not scroll while dragging the item.
Unplanned
Last Updated: 30 Aug 2024 08:27 by Shane
We have an Android device with a scanner. The scanner acts as a keyboard wedge and auto types the scanned item (barcode, tags etc.) into the Entry control and simulates the Enter Key being pressed in the background to execute the Completed event. With the .NET MAUI Entry the Completed event is fired, while with Telerik .NET MAUI Entry (RadEntry), the Completed event is not raised.
Unplanned
Last Updated: 28 Aug 2024 14:01 by Andrew
Currently if you have many labels rendered on the map and you've zoomed out, some of them overlap and are not readable.
Unplanned
Last Updated: 26 Aug 2024 12:16 by Andrew
Currently when the shapes are circles, they are rendered too small and it's difficult to select them.
Unplanned
Last Updated: 22 Aug 2024 08:15 by Gabriel
Duplicated
Last Updated: 21 Aug 2024 08:52 by ADMIN
Created by: Raymond
Comments: 2
Category: PDFViewer
Type: Feature Request
2

Hello,

Id would be great having basic editing functionalities in MAUI PDFViewer as you offer in WPF version.
Especially we're interested in having ability to add text and basic shape annotations.

Best Regards,
Raymond

Declined
Last Updated: 20 Aug 2024 10:24 by ADMIN

If an Appointment Start-Value and End-Value are the same, the Appointment is not being shown in the Day- and in the Week-View

Unplanned
Last Updated: 20 Aug 2024 10:18 by Nico

Now the appointment is not displayed in the time-ruler when the appointment start and end value are the same. 

Implement/Introduce min appointment height for Day and MultiDayView.

Unplanned
Last Updated: 19 Aug 2024 10:06 by ADMIN

For example I wanted to use the StartThickness property as Bindable property but I received the following error: No property, BindableProperty, or event found for "StartThickness", or mismatching type between value and property.

 

Unplanned
Last Updated: 19 Aug 2024 08:02 by ADMIN
Created by: Tim
Comments: 1
Category: Popup
Type: Feature Request
0
It would be nice to have more animation styles when the popup opens/closes.  Specifically, it would be nice to have an animation that slides in from a direction (top, bottom, right, left).  I would like to have a popup that appears to slide up from the bottom of the page when it opens and slides down when closing.  I know you can get a similar effect with the SideDrawer control but would prefer to use the popup.
Unplanned
Last Updated: 14 Aug 2024 08:18 by Steve
Created by: Steve
Comments: 0
Category: ListView
Type: Feature Request
0
We would like to give the user the ability to reorder the groups.
Planned
Last Updated: 14 Aug 2024 08:15 by ADMIN
Created by: Rodrigo
Comments: 0
Category: CollectionView
Type: Feature Request
2

Hi Team,

Please consider adding a way to cancel a group's expand/collapse action when the user taps on the group header.

For example, through a GroupTapping event handler that fires just before GroupTapped, and we can execute logic that prevents the operation:

private void RadCollectionView_OnGroupTapping(object sender, RadTappingEventArgs<GroupContext> e)
{
    if (e.Data.Key.ToString() == "GroupToStayPermanentlyExpanded")
    {
        e.Cancel();
    }
}


// which uses this imaginary event args with Cancel method
public class RadTappingEventArgs<T>(T data) : RadTappedEventArgs<T>(data)
{
    public void Cancel()
    {
        // prevents GroupTapped event
    }
}

Thank you,

Rodrigo

1 2 3 4 5 6