Completed
Last Updated: 01 May 2018 13:33 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 6
Category: Editor
Type: Bug Report
5
Repro steps:    
    open Edge 41 (creator's update brings it)
    start an editor, e.g.: <telerik:RadEditor ID="RadEditor1" runat="server"></telerik:RadEditor>
    type "ab"
    press enter
    type "cd"

Actual: the second paragraph contains only "d"

Expected: the second paragraph contains "cd"
Unplanned
Last Updated: 14 Apr 2023 15:06 by Chris
Created by: Chris
Comments: 0
Category: Editor
Type: Feature Request
5

Hi Team,

I would like to request the following image file extensions to be displayable using the RadEditor's ImageManager/DocumentManager.  

  • abci
  • avif
  • heif
  • heic
  • webp

Thank you!

Completed
Last Updated: 04 Sep 2013 15:37 by ADMIN
When there are empty lines at the top of the content and text is pasted at the first line, it appears after the empty rows not where the cursor position is.

Steps to reproduce:
1. Go to http://demos.telerik.com/aspnet-ajax/controls/examples/integration/ribbonbarandeditor/defaultcs.aspx?product=editor
2. Put focus in the editor before any of the existing content.
3. Press enter several times to insert blank lines at the top of the content.
4. Paste some text at the first line.

Expected: The pasted text is inserted at the first line of the content area.
Actual: The pasted text is placed after the empty lines.
Completed
Last Updated: 24 Jul 2013 08:40 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 1
Category: Editor
Type: Feature Request
4
In light of th recent feature of google analytics - Enhanced Link Attribution ( https://support.google.com/analytics/answer/2558867?hl=en-GB ) - the end users may want/need to inspect/edit the id attribute of the anchors generated by the manager or already present in the content.
Next to the id textbox ina the manager a button may be added that will generate a random id for the user to make things easier for them.
This attribute should also be added to the realtime DOM inspector as a textbox that will allow quick inspecting/editing.
Completed
Last Updated: 07 Oct 2013 13:38 by ADMIN
Visit the page http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx and create a hyperlink including the tool tip and the press ok.  You should end up with something similar to:

Copy Code <a href="http://www.microsoft.com" title="please click on me">Microsoft</a>

Now, edit the link and switch to the email tab and enter in an email address and click on ok.  You should end up with:

Copy Code
<a href="mailto:info@telerik.com" title="please click on me">Microsoft</a>

Note, the title attribute has been carried over from the information on the hyperlink tab.
There should be a tooltip field to the email tab.
Completed
Last Updated: 04 Sep 2013 15:14 by ADMIN
The issue is related to the insert select functionality and is reproduced with .NET35. The workaround is to disable the selection by putting the following script below the RadEditor:

        <script type="text/javascript">
            Telerik.Web.UI.RadEditor.prototype._addHandlersForSelectTags = function ()
            { }
        </script>
Completed
Last Updated: 17 Feb 2014 07:29 by ADMIN
If a TabStrip with two editors is configured, the editor in the first tab is working correctly, but if the second is shown - its toolbar is not working as expected.

Possible resolution is to insert a meta tag in the head element of the main page, which sets the rendering engine of IE10:
<meta http-equiv="x-ua-compatible" content="IE=10" />

Another possible resolution is to call the onParentNodeChanged() method after the tab is selected:

<telerik:RadTabStrip ID="RadTabStrip1" runat="server" SelectedIndex="0"
    MultiPageID="RadMultiPage1"
    OnClientTabSelected="OnClientTabSelected">
    <Tabs>
        <telerik:RadTab runat="server" PageViewID="RadPageView1" Selected="True" Text="Root RadTab1">
        </telerik:RadTab>
        <telerik:RadTab runat="server" PageViewID="RadPageView2" Text="Root RadTab2">
        </telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage ID="RadMultiPage1" runat="server">
    <telerik:RadPageView ID="RadPageView1" runat="server" Width="100%" Selected="True">
        <telerik:RadEditor ID="RadEditor1" runat="server">
            <Content>
                Content Page 1
            </Content>
            <TrackChangesSettings CanAcceptTrackChanges="False" />
        </telerik:RadEditor>
    </telerik:RadPageView>
    <telerik:RadPageView ID="RadPageView2" runat="server" Width="100%">
        <telerik:RadEditor ID="RadEditor2" runat="server">
            <Content>
                Content Page 2
            </Content>
            <TrackChangesSettings CanAcceptTrackChanges="False" />
        </telerik:RadEditor>
    </telerik:RadPageView>
</telerik:RadMultiPage>

<script type="text/javascript">
    function OnClientTabSelected(sender, args) {
        var tabIndex = args.get_tab().get_index();
        if (tabIndex === 1) {
            var editor = $find("<%= RadEditor2.ClientID %>");
            editor.onParentNodeChanged();
        }
    }
</script>
Completed
Last Updated: 17 Apr 2014 08:31 by ADMIN
The mentioned delete operations are not working as expected and consistent across the major browsers. This behavior is casing the Track Changes feature to be unavailable and unusable in some cases.
Completed
Last Updated: 07 Jan 2015 10:55 by ADMIN
Such feature will be a convenient availability for developers to create document templates and easy add HTML specified headers and footers 
Declined
Last Updated: 06 Jun 2016 15:27 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: Editor
Type: Feature Request
4

			
Completed
Last Updated: 20 Jan 2016 16:51 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: Editor
Type: Bug Report
4

			
Completed
Last Updated: 29 Nov 2021 08:42 by ADMIN
Completed
Last Updated: 15 May 2019 09:05 by ADMIN
Can be reproduced with the code below:

<telerik:RadEditor runat="server" ID="RadEditor1" >
    <Content>
   Here is sample content!
    </Content>
</telerik:RadEditor>
 
<input type="button" value="Set Focus On RadEditor" onclick="SetFocusOnRadEditor(); return false;" />
<script type="text/javascript">
    function SetFocusOnRadEditor() {
        var editor = $find("<%=RadEditor1.ClientID%>"); //get a reference to RadEditor client object
            editor.setFocus(); //set the focus on the the editor
    }
</script>


The problem is not reproducible when the ContentAreaMode is set to DIV or in the other browsers.

Workaround

<telerik:RadEditor runat="server" ID="RadEditor1">
    <Content>
    Here is sample content!
    </Content>
</telerik:RadEditor>
 
<button type="button"  onclick="SetFocusOnRadEditor()">Focuse On RadEditor</button>
<script type="text/javascript">
    function SetFocusOnRadEditor() {
        var editor = $find("<%=RadEditor1.ClientID%>");
        if ($telerik.isChrome) {
            var iframe = editor.get_contentAreaElement();
            iframe.contentWindow.document.body.focus();
        }
        else {
                editor.setFocus();
        }
    }
</script>
Completed
Last Updated: 17 Jul 2013 08:26 by ADMIN
Dispose a RadEditor with AJAX (ASP UpdatePanel, RadAjaxpanel, RadAjaxManager) and if you attempt to show a floating toolbar (i.e. all ToolbarMode options except Default and RibbonBar) a JS error is thrown.
There are two workarounds:
1) use ASP UpdatePanel with ChildrenAsTriggers=false and updateMode=Conditional
2) override several RadWindow methods to prevent the error (these scripts must be placed just before the closing </form> tag):
	<script type="text/javascript">
		Telerik.Web.UI.RadWindow.prototype._moveElementToShowOutOfView = function ()
		{
			if (this.view)
				this.view.moveOutOfSight();
		}

		Telerik.Web.UI.RadWindow.prototype.setVisible = function (toShow)
		{
			if (this.view)
			{
				if (toShow)
					this.view.show();
				else
					this.view.hide();
			}
		}
	</script>
Completed
Last Updated: 02 Mar 2022 12:15 by ADMIN
Created by: sitefinitysteve
Comments: 1
Category: Editor
Type: Feature Request
3
Using sitefinity we get a lot of admins getting "Enter happy" and generating obnoxious amounts of <p> tags or empty divs, or something...

I'd love a filter such that when they save it'd go through and clean up (remove) the empty crap content.

<p>some text</p> <-- FINE
<p></p> <-- GONE
<p><br/></p> <-- GONE
<p>Final bit of text</p> <-- FINE
...etc
Completed
Last Updated: 08 Jun 2016 15:31 by ADMIN
Created by: ChrisS
Comments: 1
Category: Editor
Type: Feature Request
3
We would like the image manager to be able to support:

max-width
min-width
max-height
min-height

and produce output similar to:

<img src="/randomlink.png" style="width : 100%; height : auto; max-width : 960px; min-width : 200px;" />

This way we can use the RadEditor to produce responsive content.
Completed
Last Updated: 17 Jan 2022 11:57 by ADMIN
ADMIN
Created by: Vessy
Comments: 4
Category: Editor
Type: Bug Report
3
ImageManager loses the selection after an image has been edited into the ImageEditor and saved with new file name.

video: http://screencast.com/t/rZIp4iioehE
Completed
Last Updated: 29 Jan 2015 11:45 by ADMIN
Created by: Ben Hayat
Comments: 10
Category: Editor
Type: Feature Request
3
Hello Team;

The following request, is a feature that everyone needs all the time. It is eMail mailmerge control.

Here how it works:
a) Just like a mailmege that has been around since the 80's, A user can use the editor to create the body/content of an email more like a template that will have tags/placeholders that at run time live data will replace them. This control can use the RADEditor to create such template. This template should be saved in order for the email Merge control to use.

b) The second part is the Mailmerge control - W should be able to attach it to a collection of objects (that these objects could have come from database), and each object could provide the FROM, TO, SUBJECT and for MESSAGE, it could use the template that user had created and saved. The Mailmerge will create new email for each object replacing place holders and sends email to SMTP server.

If you need more info, please contact me and I'll provide more info.

Please everyone, vote for this control/feature.
Thanks!
Won't Fix
Last Updated: 11 Jun 2021 09:37 by ADMIN
RadEditor allows the copy and paste of images directly into the Editor content area. The Editor converts this images to a base 64 string and includes them in the HTML.

What would really be great is if it could instead convert the image to a file, perhaps even from the base 64 string, and save it server side, and instead add an img tag referencing the saved file. This would be very useful for when the editor is being used for sending emails (less space) and even creating content as the file would be able to be cached.

It's already being done in the TeamPulse product when a screenshot or other image is pasted into the editor. Please extend this functionality to be built into the AJAX version.
Completed
Last Updated: 06 Jun 2016 15:29 by Andrey
Created by: akom
Comments: 1
Category: Editor
Type: Bug Report
3
Instructions:
In IE11 when we select an image and change from Design to HTML mode or try to apply any paragraph style to it, the browser gets unresponsive. 

To get a better understanding, please refer to the following videos:
http://screencast.com/t/xufHlK0bew
http://screencast.com/t/YcVcqygVY7GE

Demo page: http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx?skin=Default