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.
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.
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.
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
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
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
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.
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.
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