Unplanned
Last Updated: 16 Jun 2021 11:28 by ADMIN
Provide a way to disable the vertical scrollbar visibility. 

Currently, on Android -> Grey vertical line appears for a while and then disappears when RichTextEditor content loads
Unplanned
Last Updated: 06 Jul 2021 11:40 by ADMIN
Although RichTextEditor does not rely on SkiaSharp library,  NullReferenceException is thrown when you reference Telerik UI for Xamarin Lite assemblies and add RichTextEditor with a predefined source to the page.
Unplanned
Last Updated: 21 Apr 2021 15:20 by ADMIN
Layout shrinks to the left part after screen rotation when a concrete converted from docx document is loaded into the RichTextEditor.
Unplanned
Last Updated: 14 Apr 2021 14:02 by ADMIN
Created by: Xu
Comments: 0
Category: RichTextEditor
Type: Feature Request
0
Provide a way for app users to insert a table with custom row and column numbers.
Completed
Last Updated: 12 Oct 2021 08:06 by ADMIN
Release R3 2021
Created by: Xu
Comments: 0
Category: RichTextEditor
Type: Feature Request
0
Provide a way for users to insert  Base64 images inside the richtext editor.
Unplanned
Last Updated: 01 Apr 2021 08:48 by ADMIN

Have I found a bug with the RichTextEditor?  It appears that if I apply a padding, it behaves like the margin.  Take a look at the attached file.  If I change the margin or padding, the result looks the same.  If I set a margin of 5 and a padding of 5, it looks like a margin of 10.

Is this a bug with the control or have I misunderstood something?

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: 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.
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: 14 Oct 2021 12:56 by ADMIN
Option to change width/height of the images that are inserted in the editor.
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: 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: 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: 26 Nov 2020 15:33 by ADMIN
Created by: Polya
Comments: 0
Category: RichTextEditor
Type: Feature Request
0
Such node should function as a single element and should be removed with a single key press.
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. 

1 2