Re: Toggle editor with Javascript

  •  02-01-2010, 4:28 AM

    Re: Toggle editor with Javascript

    Hi Misha999,
     
    Try
     
    1. <%@ Page Language="C#" %>   
    2.   
    3. <%@ Register Assembly="CuteEditor" Namespace="CuteEditor" TagPrefix="CE" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    5. <html xmlns="http://www.w3.org/1999/xhtml">   
    6. <head runat="server">   
    7.     <title>Untitled Page</title>   
    8. </head>   
    9. <body>   
    10.     <form id="form1" runat="server">   
    11.         <input type="button" value="hide" onclick="hide()" />   
    12.         <input type="button" value="show" onclick="show()" />   
    13.         <CE:Editor ID="editor1" runat="server" Style="display: none">   
    14.         </CE:Editor>   
    15.     </form>   
    16. </body>   
    17. </html>   
    18.   
    19. <script>   
    20. var editor1=document.getElementById("<%= editor1.ClientID %>");   
    21. function hide()   
    22. {   
    23.     editor1.style.display="none";   
    24. }   
    25. function show()   
    26. {   
    27.     editor1.style.display="block";   
    28. }   
    29. </script>  
    Regards,
     
    ken
View Complete Thread