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
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: 10 May 2021 13:17 by ADMIN
Created by: Ian
Comments: 0
Category: RichTextEditor
Type: Feature Request
3
Provide support for applying global HTML Style. For example:
<head>
  <style>
    p{
       color:red;
     }
   </style>
</head>
Currently, you can apply style directly to the HTML element: 
<p  style="color: red;">This is a paragraph</p>
Unplanned
Last Updated: 12 Feb 2021 09:40 by ADMIN
It would be nice to have an event to know when RichTextEditor finishes loading the data.
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: 25 Mar 2021 15:52 by ADMIN

Currently, when in edit mode only the correct hyperlinks ("a href" links) can be detected. Provide an option for Automatic link detection for URLs, Phone numbers, Calender support in read-only mode

Currently, the Canary Island is detected as it is an "a href" link, and the editor is in read-only mode. google.com is not detected as a link: 

Unplanned
Last Updated: 14 Apr 2021 15:07 by ADMIN

Since the RichTexrSelection is now setable for the RichTextEditor control, if feels like necessary to provide the support for add/change specified content at specified position.

We can change the content programmatically in 2 conditions:

1. Insert plain text / html code at the cursor point, while there is nothing selected.

2.Replace the currently selected content with new plain text / html code while selection exists.

 

Just for reference, an Api as below would be ideal:

RichTextSelection.SetHtml(html code);

RichTextEditor.Selection.SetHtml(html code);

 

For example, if I want to insert some plain text at the beginning of the document just after the rich text file loaded, I can easly achieve by this:

richTextEditor.Selection = new RichTextSelection(0,0);

richTextEditor.Selection.Insert("stringOrHtmlCode");

 

I suppose there is an easy way to implement the feature by invoking some predefined javascript codea and wraping them as exposed methods or functions.

 

 

Hope the suggeation could be accepted.

 

 

Kind regards.

 

Unplanned
Last Updated: 14 May 2021 07:21 by ADMIN
Created by: Yuujin
Comments: 0
Category: RichTextEditor
Type: Feature Request
2
Provide a way to add a placeholder/watermark in RichTextEditor when it's empty.
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: 13 Oct 2021 13:37 by Tom
Created by: Tom
Comments: 1
Category: RichTextEditor
Type: Bug Report
2

<telerikRichTextEditor:RadRichTextEditor Grid.Row="1" Unfocused="RadRichTextEditor_Unfocused"/>

 

private void RadRichTextEditor_Unfocused(object sender, FocusEventArgs e)
{

}
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: 14 Apr 2021 14:30 by ADMIN
Created by: Xu
Comments: 0
Category: RichTextEditor
Type: Feature Request
1
Adding  "find and replace" /  "replace all" features would be really helpful for users when editing rich text content.
Unplanned
Last Updated: 14 Jun 2021 09:14 by ADMIN

If RichTextEditor has a source like this:

var htmlSource = @"<table style='background-color:red;border: 3px solid black'>
                    <tr><td> test table</td></tr>
                    </table>";

the table is rendered, but doesn't have the styling applied.

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

 

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: 11 Sep 2023 09:52 by Chris
Changing the text size from device setting does not affect the editors font size
1 2