Completed
Last Updated: 31 Jan 2024 09:04 by ADMIN
Release R2 2023 SP1

when using the justify toolbar item it does not justify the text. 

Completed
Last Updated: 24 Feb 2022 10:20 by ADMIN
Release R1 2022 SP

on Android devices with API 31 the app crashes when using context menu. 

Actually this is the native android context menu which crashes the app, the RichTextEditor context menu is not displayed. 

The RichTextEditor context menu gets displayed when closing the keyboard and then tap on the text.

Completed
Last Updated: 10 Nov 2021 15:01 by ADMIN
Release R3 2021 SP

there is a mistake with the accessibility modifier for `Telerik.XamarinForms.RichTextEditor.RichTextPasteType`. When it is Internal it's not possible to use the PasteCommand since it requires that type as input. 

 

Solution:

use reflection to get the enum

var assembly = typeof(RadRichTextEditor).Assembly;
var type = assembly.GetType("Telerik.XamarinForms.RichTextEditor.RichTextPasteType");
var obj = Enum.ToObject(type, 1);
await Clipboard.SetTextAsync("A pasted text");
var canExecute = richTextEditor.PasteCommand.CanExecute(obj);
richTextEditor.PasteCommand.Execute(obj);