Completed
Last Updated: 11 Apr 2014 11:51 by ADMIN
ADMIN
Misho
Created on: 07 Aug 2013 11:55
Category: Editor
Type: Bug Report
0
FIX: RadEditor's content is messing up when submitting from Preview mode in IE7
RadEditor's content is messing up when links are generated through document manager and submit it from Preview mode. The issue is reproducible in Internet Explorer 7

However, a possible workaround for the issue would be to set the following code the OnClientSubmit event of the RadEditor:

<telerik:RadEditor OnClientSubmit = "OnClientSubmit" />
 
<script>
   function OnClientSubmit(editor)
   {
   editor.set_mode(1); //Force design mode
   }
</script>
0 comments