Declined
Last Updated: 31 Dec 2019 13:31 by ADMIN
Hi Team,
Is there any way to set the MaxTemplateSize,MaxFlashSize,MaxMediaSize,MaxDocumentSize,MaxTemplateSizes from the web.config itself without any code change. currently my system taking the default value "200KB". please let me know is there any way, in asp.net Ajax RadEditor in Asp.net C#. We are using telerik dll version 2017.1.228.45.
Declined
Last Updated: 26 Sep 2023 08:45 by ADMIN

There are issues with the cursor location when clicking at the end (or to the right) of a line in bullet lists with multiple levels.

When clicking at the end of the line the cursor is unexpectedly placed at the beginning of the line instead of at the end.

This does not happen if you click on some of the actual text or hit the exact location of the last character of the line, but when you naturally click just to the right of the end of the line.

It seems that it does not happen on all levels, but only some, as I have tried to depict in the attached screenshot.

This behavior was replicated on the latest WebForms Editor demo at https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

Declined
Last Updated: 07 Jun 2016 05:45 by ADMIN
Created by: Andrea
Comments: 1
Category: Editor
Type: Bug Report
0
I've noticed a problem that the editor is now stripping off any background-image style from any tag. The problem seems to be that it is converting single quotes (') to double quotes (") which then close the opening quote for the style property, therefore making the HTML invalid.

​

Here's how it can be reproduced:

In the rad editor go the HTML tab.

Add the following code:

<div style="background-image: url('something.jpg');">This is a test</div>

Click the Design tab, then back to the HTML tab.

Notice that the attribute has been changed so that it now reads:

<div style="background-image: url("something.jpg");">This is a test</div>

This is obviously invalid HTML. Click on the Design tab then back to the HTML tab. The style has now been removed completely.

This can be reproduced in the current Telerik demo site.
Declined
Last Updated: 04 Apr 2022 14:53 by ADMIN

Hi Team,

Does Track Changes work if Multiple Users work Simultaneously on Editor and

Is it possible to view all Users Name and Date Time in different pane, after enabling Track Changes.


Declined
Last Updated: 17 Mar 2015 08:42 by Elena
Step to reproduce:
1. Open Editor Demo in Chrome and change the  font size in the developer console (the F12 button) for the text;
2. enter some text separated by paragraphs (e.g. 
“Test

Test”)
3. Put the cursor before the second “Test” text and press the Backspace button on the keyboard.

Actual result:
The size of the text has been changed.

Expected result:
The size must be the same as it was before the Backspace button was clicked.

Notes:
The issue reproducible only in Chrome.
Declined
Last Updated: 30 Apr 2020 09:30 by ADMIN
Created by: Haydn
Comments: 1
Category: Editor
Type: Feature Request
0
I know that there are articles that describe how to detect that the user has interacted with the RadEditor, but checking whether the content has changed is quite another task.
I understand that the underlying storage method makes it almost impossible to compare, but that's why we need the control to do this internally.
Even if we fall short of comparing the content, at least build-in the workarounds into the control to invoke a single "Changing" event.
Declined
Last Updated: 31 Mar 2020 15:48 by ADMIN
Editing the RadEditor's Tools file is rather cumbersome and error prone.

Thus, please provide an XML-Schema file that can be downloaded from the Telerik website and added to the corresponding Tools XML file header, so Visual Studio and other integrated IDEs can provide IntelliSense and error checking.
Declined
Last Updated: 21 Jun 2022 22:34 by ADMIN
Declined
Last Updated: 08 Apr 2020 17:23 by ADMIN
Created by: mkerchenski
Comments: 1
Category: Editor
Type: Feature Request
0
Right now if copy multiple table rows and paste them into an existing table they create a new table in that table.  We would like the ability to copy rows from a table and paste them into the same table or a new table with the same number of columns and have the new rows pasted without the creation of a nested table.
Declined
Last Updated: 21 Mar 2019 10:25 by ADMIN
Created by: Ravi
Comments: 1
Category: Editor
Type: Bug Report
0
Hi Telerik Team,

There is one recent problem we faced when using RadEditor. The bottom line is distorted.

We are using version telerik version ASP.NET AJAX Q2 2016.

Attached is the screenshot of html. 

Declined
Last Updated: 21 Mar 2019 11:53 by ADMIN
Created by: Ravi
Comments: 1
Category: Editor
Type: Bug Report
0
Hi Telerik Team,

There is one recent problem we faced when copy paste from word document to Rad Editor. The spacing between the paragraphs is more than what exists in the word document.

The property we are using while copy paste from document to RadEditor

    radTextEditor.StripFormattingOptions = Telerik.Web.UI.EditorStripFormattingOptions.MSWordNoMargins | Telerik.Web.UI.EditorStripFormattingOptions.ConvertWordLists;

The functionality working fine in IE 11.

We are using version telerik version ASP.NET AJAX Q2 2016.

Also there is a default font of Times New Roman in Edge browser which not in IE 11

Attached is the screenshot of html. 

Please look into this.
Declined
Last Updated: 14 Oct 2016 10:48 by ADMIN
Created by: pranav
Comments: 2
Category: Editor
Type: Bug Report
0
Hi Telerik Team,

There is one recent problem we faced when copy paste of email address doesn't get open in outlook as HREF property is not set in Edge Browser. The functionality working fine in IE 11.

We are using version telerik version ASP.NET AJAX Q2 2016.

Attached is the screenshot of html. 
Declined
Last Updated: 21 Jun 2022 09:33 by ADMIN
When creating or updating old areas, the target value always shows either Target or the lastly selected one. It does not update its state.
Declined
Last Updated: 10 Jun 2021 19:13 by ADMIN
It will be possible to use Lightweight render mode with AccessibleRadEditor.
Declined
Last Updated: 28 Mar 2019 10:31 by ADMIN
Created by: Patrick
Comments: 2
Category: Editor
Type: Feature Request
0
While the RadEditor is able to now be used on Mobile devices more easily, the crux of the WYSIWYG for us is that when creating either HTML for web or emails, the HTML that is generated from the RadEditor doesn't always generate the code that follows or renders correctly on mobile devices.  Ideally, the respective HTML that is generated is correctly output in Mobile Responsive format for all mobile devices.
Declined
Last Updated: 21 Jun 2022 09:56 by ADMIN
Declined
Last Updated: 09 Mar 2015 15:29 by ADMIN
Issue: The value of the href property of a link is changed while modifying the content of the link.

Resolution:

This is a IE's feature and can be prevented by executing "AutoUrlDetect" browser command

<telerik:RadEditor runat="server" ID="RadEditor1" OnClientLoad="OnClientLoad">
</telerik:RadEditor>
  
<script type="text/javascript">
    function OnClientLoad(editor, args) {
        editor.executeBrowserCommand("AutoUrlDetect", false, false);
    }
</script>

More about the matter is available in this thread-- http://stackoverflow.com/questions/3519665/disable-automatic-url-detection-for-elements-with-contenteditable-flag-in-ie
Declined
Last Updated: 16 Mar 2015 13:44 by Elena
Created by: Yvonne
Comments: 1
Category: Editor
Type: Bug Report
0
In Firefox and Internet Explorer, the "Remove Alignment" button does not correctly format text with text-align set using an inline style.

For example, if this is the HTML in the editor:

<p style="text-align: center;">Here is text that is center aligned</p>

In the Design editor, the "Remove Alignment" button looks selected, and pushing it has no effect (see screenshot).

In the Javascript, the remove alignment functions for Firefox and IE only remove styles from the DOM element, inline styles are not being removed.
Declined
Last Updated: 07 Jun 2016 08:01 by ADMIN
Provide ability to easily obtain Markdown syntax from the RadEditor, to be saved on disk. Ex. string RadEditor.GetMarkdown()