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. 

Unplanned
Last Updated: 11 Sep 2023 09:52 by Chris
Changing the text size from device setting does not affect the editors font size
Unplanned
Last Updated: 30 Aug 2022 08:55 by Chris

When setting FontOptions (FontSize, FontAttributes) and TextColor to the control, they are not applied. For example setting a BackgroundColor works as expected. 

 <telerikRichTextEditor:RadRichTextEditor BackgroundColor="Black" 
                                                 x:Name="richTextEditor" 
                                                 TextColor="White"
                                                 FontAttributes="Bold"
                                                 FontSize="30" />

Unplanned
Last Updated: 16 Aug 2022 13:42 by ADMIN
Created by: Chris
Comments: 1
Category: RichTextEditor
Type: Feature Request
0

Hello Telerik.

Currently using your RichTextControl and it is working well.

One feature I would love is if the source and output could also be markdown.

Currently you only support the source as HTML as well as the output is HTML.

 

I am storing the data in markdown for various reasons and the constant conversion to and from markdown/HTML would be nice to avoid.

Regards

Chris ....

Unplanned
Last Updated: 15 Aug 2022 14:00 by Ruchira
When typing text inside the editor with for example Times New Roman font family, then exporting the document to RTF and importing it to HTML, the font family does not apply. 
Unplanned
Last Updated: 12 Aug 2022 09:57 by Ruchira

1) We inserted one image in Rich Text Editor. Here the original size was 100%.
2) We resized the image, i.e. reduced the size to 50%, 30%, 10%, etc.
3) After reducing size we fetched the HTML through GetHTML() method.
4) We converted the HTML string into an RTF string.
5) Again converted RTF to HTML string.

6) Image size is not updated to 50/30/10%,  it has different width and height.

Unplanned
Last Updated: 21 Jul 2022 06:39 by Nishant
In the RichTextEditor, we need an event when the user scrolls the page. Once the user scrolls to the end, we need an event that the scroll has ended.
Unplanned
Last Updated: 21 Jul 2022 05:35 by Ruchira
Created by: Xu
Comments: 3
Category: RichTextEditor
Type: Feature Request
2

Currently, It's quite difficult to detect whether the text has been changed after the control is loaded completely.

And TextFormattingChanged event can not be raised when the text content is changed while text format isn't.

 

Unplanned
Last Updated: 04 Jul 2022 13:21 by Nir
Currently as soon as the RichTextEditor receives the focus, the system keyboard pops up. The request is to provide a way to suppress the keyboard when the editor gets focused.
Unplanned
Last Updated: 04 Jul 2022 13:09 by Nir
Created by: Nir
Comments: 0
Category: RichTextEditor
Type: Feature Request
0
Add a visual keyboard component rendered on the screen that mimics keyboard interactions (instead of the system keyboard).
Unplanned
Last Updated: 15 Mar 2022 08:08 by ADMIN

The cursor where editing is performed is hidden from the RichTextEditor toolbar and the keyboard when the toolbar is defined under the RichTextEditor.

The issue can be reproduced in Telerik UI for Xamarin Sample App RTE demons

Workaround:
Define the RichTextEditor toolbar above the editor

Unplanned
Last Updated: 04 Mar 2022 07:55 by ADMIN
Created by: Yuujin
Comments: 5
Category: RichTextEditor
Type: Bug Report
5

Focused event is not fired:

 <richtexteditor:RadRichTextEditor Focused="RadRichTextEditor_Focused"/>

private void RadRichTextEditor_Focused(object sender, FocusEventArgs e)
{

}

 

 

Unplanned
Last Updated: 01 Mar 2022 09:51 by Nikita

 On iOS after tap on any command on toolbar with opened keyboard, the keyboard is hidden in a Shell project

 

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.

Unplanned
Last Updated: 11 Feb 2022 15:29 by Nikita
Provide an option to control whether the toolbar will be translated over the keyboard when opened and the keyboard will hide the toolbar or not.
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);

Unplanned
Last Updated: 15 Oct 2021 09:31 by ADMIN
When the RadRichTextEditor has IsReadOnly="True" our expectation is to be able to still select and copy text from it without going into edit mode on the document. However, when IsReadOnly="True", the control is unresponsive as though it were disabled.
Unplanned
Last Updated: 14 Oct 2021 13:46 by ADMIN
For example paste a new selection (in this case I just wanted to paste a couple of Environment.NewLine). 
Unplanned
Last Updated: 14 Oct 2021 12:56 by ADMIN
Option to change width/height of the images that are inserted in the editor.
Unplanned
Last Updated: 13 Oct 2021 15:30 by Tom
Switching into edit mode - opening the keyboard and setting the cursor to the end of the text would be nice
1 2