Completed
Last Updated: 16 Sep 2013 11:14 by John
Created by: John
Comments: 0
Category: Editor
Type: Bug Report
1
Issue:
Error on RadEditor focus withing RadMultiPage

To Reproduce:
1)Use updatepanel or radajaxpanel
2)Use RadTabstrip and RadMultiPage with several RadPageViews
3)Add RadEditors to all RadPageViews
4)After first page load, using the ui, click to focus in one RadEditor to see toolbar.
5)Switch Tabs 
6)Using the ui click to focus in a different RadEditor, and receive the error.

Error:
TypeError: this.view is null
}else{this.view.hide();
Teleri...8a7831e (line 19237)

Version:
Bug in product version: 2013.2.611.45
It worked in the version we were using prior: 2012.2.912.40
Completed
Last Updated: 11 Sep 2013 14:56 by Philip
Created by: Philip
Comments: 0
Category: Editor
Type: Bug Report
0
Encountering an issue within RadEditor while using Ordered Lists.  Some of the list items are re-numbered incorrectly and there are general issues while performing the Outdent command.

Steps to Reproduce:
1. Copy all text from the source document (attached)
2. Paste into the RadEditor's HTML mode
3. Switch back to Design mode.
4. Bring the cursor to just before the S in the text "START HERE" in the third nested ordered list.
5. Hit the Outdent button, fine so far.
6. Take note of the item "THIS ITEM MOVES LISTS"
7. Hit the Outdent button again. The item "THIS ITEM MOVES LISTS" is no longer a child node of "Back-dent!"

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: 04 Sep 2013 15:30 by ADMIN
Inserting a new link or inserting a link over selection from Hyperlink Manager is not possible in Internet Explorer 7
Completed
Last Updated: 04 Sep 2013 15:24 by ADMIN
When the cursor is at the beginning of H2 element and enter key is pressed, the RadEditor adds additional H2 element in NewLineMode='Br'.
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: 04 Sep 2013 15:13 by ADMIN
The floating toolbars do not appear properly with the new RadWindow Lightweight rendermode. They are too short, backgrounds are missing and sizes are incorrect, so buttons are misaligned and/or overlapping.

A workaround is avoiding the lightweight rendermode of RadWindow through the web.config. Add the following in the <appSettings>:
*<add key="Telerik.Web.UI.RenderMode" value="Lightweight" />*

and other RadWindows that need LightWeight rendering (but they must not be on the same page, or masterPage-contentPage-userControl combination) can have their own RenderMode property set to Lightweight.
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: 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: 10 Jul 2013 08:59 by ADMIN
Code for test:
<ol>
    <li>test
    <ol>
        <li>test </li>
    </ol>
    </li>
</ol>

1. Go to the end of the nested list and press 'Enter' twice

2. The nested list is discontinued but by pressing Enter the parent list can not be discontinued.
Completed
Last Updated: 09 Jul 2013 07:11 by ADMIN
ADMIN
Created by: Joana
Comments: 0
Category: Editor
Type: Feature Request
0

			
Completed
Last Updated: 25 Jun 2013 12:24 by ADMIN
When ContentAreaMode='Div', hovering over a select HTML element causes the contenteditable property to gets value 'false' in Firefox
Completed
Last Updated: 13 Feb 2013 18:03 by Tim
After editing the properties of a hyperlink in Chrome the link just disappears. See the video at http://screenr.com/XxX7 which demonstrates the issue occurring on the demo site.