When a text with formatting is pasted in the content of RadEditor with 'EnableComments' property set to 'true' under IE, the formatting will be stripped.
When the editor is wrapped inside a fixed size parent with overflow:y: scroll, the "Toggle Full Screen" command (F11) does not make the Editor occupy the whole view port. The issue can be reproduced in IE. video: http://screencast.com/t/0pWlWAgKX1qD
When the AutoResizeHeight property of Editor is set to True, pressing enter resizes the content area without reaching the bottom of the content area. The bug can only be reproduced in IE9 and IE10. video: http://screencast.com/t/3mCkQNTC
The desired behavior cannot be achieved out of the box with the content provider from this KB article, because the paths to the images are passed to a generic handler. The main reason it can't be achieved at the moment is that the latest moment of the page life-cycle of the FileBrowser.ascx dialog, when the user can set the FileExplorer's InitialPath is before the Page_Load event, but the path to the preselected in the Editor item is passed in the Page_Load event and the initial path is reset internally.
When a new anchor is created and an anchor name is set via the Hyperlink Manager tool of RadEditor, the 'name' attribute will not be applied under IE7. Under IE8 the specified anchor name is set to a 'submitname' attribute of the anchor element.
When the height of the RadEditor is too small to accommodate the tools with the given width calling repaint() causes the appearance of the control to break due to incorrect calculations. This means that the control has an optimal (minimal) height. The repaint() method is automatically called when the control is shown after being initially hidden on the page (e.g. after a partial postback) Possible workarounds: - increase the height of the control. For example, 640px width with 264px height and the default set of tools work well - reduce the number of used tools. Effectively leaves more height for the control to use - use ToolbarMode=ShowOnFocus to avoid having the tools in the main content initially, they will be shown in a popup when the content area is focused
When pasting content between two RadEditors a span with an additional style attribute is generated in Chrome.
IE8 and 9 freeze when trying to do a ReplaceAll in HTML mode and the string to find is very short - easiest way to reproduce is using a single letter.
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>
Steps to reproduce: 1. Go to http://demos.telerik.com/aspnet-ajax-beta/editor/examples/overview/defaultcs.aspx 2. Type some text 3. Format it as bold, italic and underline 4. Enter two new empty lines 5. Insert a table
Use the demo at: http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx Select html mode and clear all existing text Enter some text and format it as bold, italic and underline Enter 2 new lines (breaks) Insert a 3x3 table using the table button in the editor Result: When the table is inserted the text loses its formatting. See attached file.
I have problem with "Strip CSS formatting" command in Chrome, for example this html as editor content <span class="redText">test test</span> In Firefox when I select this two words and select "Strip CSS formatting" it works with no problems, but in Chrome text stays the same, I managed to reproduce this issue on your demo page http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx
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.
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.
RadEditor adds redundant nbsps when the cursor is positioned at the beginning of an unordered list and press backspace in IE9
1. Go to http:/demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx 2. Choose the bullet list command from the toolbar and type some text 3. Choose the FormatCodeBlock command and insert some text 4. Press SHIFT+ENTER to insert <br> Actual: If you continue pressing enter, new lines will not be inserted. Expected: New lines are inserted.
Hi, is it possible for radeditor to put red line for mis spell words as you type, like MS word and Google docs. Regards, Syed
When text is pasted in RadEditor with ContentAreaMode="Div" under Firefox and Chrome, the cursor will be positioned before the pasted text.