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 pasting content between two RadEditors a span with an additional style attribute is generated in Chrome.
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 a text with formatting is pasted in the content of RadEditor with 'EnableComments' property set to 'true' under IE, the formatting will be stripped.
Currently the default font of RadEditor in Chrome is set to "Times New Roman". This font, however, is not set to the text.
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.
Radeditor when initially set as visible="false", the toolbar border images never renders when the control is later set to Visible="true".
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
When ContentAreaMode="Div" RadEditor's Content Area's width automatically re-sizes with the content. If width is applied to reContentArea div element, the problem is resolved. Actual behavior: by placing a long word or pasting an image larger than the content area's dimensions, its width is automatically expanded. (see ActualBehavior.png) Expected Behavior: the content area's width should remain unchanged despite word length and pasted image dimensions. (see ExpectedBehavior.png)
When using FormatBlock Tool with text inside <div> element the result differs under the different browsers. IE: - cursor placed inside the <div> with no selection: the <div> tag is replaced by the selected heading. - partially selected text: the <div> is split into two and the selection is wrapped with a heading tag. FireFox: - cursor placed inside the <div> with no selection: a heading tag wraps the whole text and the <div> is preserved as parent element. - partially selected text: the <div> is split into two and the selection is wrapped with a heading tag. Chrome: - cursor placed inside the <div> with no selection: the <div> tag is replaced by the selected heading. - partially selected text: the <div> is split into two and the selection is wrapped with a heading tag.
When creating a tree view with nodes which on click create instances of the RadEditor and pasting inside the content of the second instance throws a JavaScript error. The following workaround will help you avoid this behavior: Set this function to the OnClientLoad property (OnClientLoad = 'OnLoad') function OnLoad(editor, args) { var originalGetPasteIFrame = Telerik.Web.UI.Editor.Utils._getPasteIframe; Telerik.Web.UI.Editor.Utils._getPasteIframe = function (parentDoc, editor) { if ($telerik.isIE8) { $telerik.$(this._pasteIframe).remove(); this._pasteIframe = null; } return originalGetPasteIFrame.call(this, parentDoc, editor); } }
RadEditor's height is increasing as the content increases in iPad. The height of the control should remain the same but scrollbars should be displayed in the content area.
To replicate this (as it is rather difficult to explain) go to http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx Click on the HTML tab and replace all the content with: <div> <div> <div style="width: 100%;">foo bar </div> </div> </div> Click back on the Design tab and click at then end of the first line. When you press enter, the new line will be filled with non breaking spaces equal to the amount the inner-most div was indented.
The problem could be described with the following behavior: · Cannot insert a link with the Link Manager; · If switched to HTML mode cannot return to Design mode, switching to Preview – allows Design mode. · A JavaScript error is thrown on focusing and on editing the content area. Possible fixes are: o Removing the Modernizr JavaScript file; o Setting the RadEditor with ContentAreaMode="Iframe" property;
When only one word is inside the content of the editor. If you select it and try to apply a desired class name from the mentioned tool, nothing happens.
Content appears double if there is a Style element inside it and the Spell Check is triggered.
When an image is selected and it is larger than the preview size of the Image Map Editor new shape selections could not be easily added.
The StripFormattingOptions feature does not work when the ContentAreaMode is set to Div mode. This behavior is introduced only in Chrome, Firefox and Internet Explorer 7.