Here is an interesting issue that a customer brought up:
In FireFox, in a modal popup window with the editor is in DIV mode. Copy some text from MS Word into the editor.
Close the editor in such a way to save the data (our app saves to a database).
Reopen the editor reading the data from your data store.
Hi-lite all the text (ctrl-a) Click the Delete key. Notice that the text does not delete. You can't delete the text until you type a character at the end or beginning of your pasted text. This is only a FireFox issue. Does not happen in Safari or IE. (Haven't testing in Chrome)
Sometimes you don't have to save the pasted text, editing just gets hosed right after pasting.
This feature was introduced sometime in the last 2 versions. (We have a site running an older version of the tools.)
Here is our editor definition in the markup:
<telerik:RadEditor ID="txtItemSubject" runat="server"
EnableResize="False"
Width="590" Height="110"
EditModes="Design, html"
SpellCheckSettings-AllowAddCustom="false"
SpellCheckSettings-DictionaryLanguage="en-US"
SpellCheckSettings-SpellCheckProvider="TelerikProvider"
OnClientPasteHtml="OnClientPaste"
StripFormattingOnPaste="AllExceptNewLines"
ContentAreaMode="Div"
Contentfilters="MozEmStrong, EncodeScripts"
OnClientModeChange="OnClientModeChange"
OnClientLoad="OnRadEditorClientLoad">
OnClientPaste only checks the length of the text pasted - not modifications are done to the paste.
OnRadEditorClientLoad resizes the client area so the sizing is the same between browsers - again, not modifying the text.
This is repoducable with any text from Word. (I just opened a random word doc and copied from several different line and could repro this regardless of the line - so it's not Word doc specific.
Thanks!
Rich