noneditable areas don't work consistently

Last post 02-17-2014, 7:59 AM by Kenneth. 1 replies.
Sort Posts: Previous Next
  •  02-15-2014, 3:37 PM 79931

    noneditable areas don't work consistently

    We're evaluating the Rich Text Editor for our customer admin portal.  We require CMS content templates where only specified areas are editable.  The noneditable tags sound great on paper, but we're finding several issues with this feature.  Here is what we've found:

     

    • If we arrow key up/down from an editable area to a read-only area, we can edit text in the read-only area.
    • If we completely select a read-only area, we can delete it.
    • At various times, we can mouse-click a read-only area and edit the content.
     Are these known issues?  Are there fixes planned?  Do other customers use this feature?
     
    Thanks for any info you can provide. 
    Filed under:
  •  02-17-2014, 7:59 AM 79934 in reply to 79931

    Re: noneditable areas don't work consistently

    Hi tarannar,

     

    Can you try the example page below? Can you reproduce the same problems with it?

     

    1. <%@ Page Language="c#" ValidateRequest="false" %>  
    2.   
    3. <%@ Register TagPrefix="RTE" Namespace="RTE" Assembly="RichTextEditor" %>  
    4.   
    5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
    6. <html xmlns="http://www.w3.org/1999/xhtml">  
    7. <head>  
    8.     <script runat="server">  
    9.         protected override void OnLoad(EventArgs e)  
    10.         {  
    11.             Editor1.Text = @" <div unselectable='on' contenteditable='false'>read only</div> <div>editable content</div>";  
    12.             base.OnLoad(e);  
    13.         }  
    14.     </script>  
    15. </head>  
    16. <body>  
    17.     <form id="Form1" method="post" runat="server">  
    18.         <RTE:Editor ID="Editor1" runat="server" />  
    19.     </form>  
    20. </body>  
    21. </html>  

     

     

    Regards,

     

    Ken 

View as RSS news feed in XML