Re: function CuteEditor_OnCommand

  •  06-08-2009, 1:20 AM

    Re: function CuteEditor_OnCommand

    Hi goh6613,
     
    Please try this example
    1. <%@ Page Language="C#" %>   
    2.   
    3. <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    5.   
    6. <script runat="server">   
    7.   
    8.     protected void button1_Click(object sender, EventArgs e)   
    9.     {   
    10.         editor1.Visible = true;   
    11.         editor2.Visible = !editor1.Visible;   
    12.         editor1.Text = "editor1";   
    13.   
    14.     }   
    15.   
    16.     protected void button2_Click(object sender, EventArgs e)   
    17.     {   
    18.         editor2.Visible = true;   
    19.         editor1.Visible = !editor1.Visible;   
    20.         editor2.Text = "editor2";   
    21.     }   
    22. </script>   
    23.   
    24. <html xmlns="http://www.w3.org/1999/xhtml">   
    25. <head runat="server">   
    26.     <title>Untitled Page</title>   
    27. </head>   
    28. <body>   
    29.     <form id="form1" runat="server">   
    30.         <div>   
    31.             <asp:Button ID="button1" runat="server" Text="ShowEditor1" OnClick="button1_Click" />   
    32.             <asp:Button ID="button2" runat="server" Text="ShowEditor2" OnClick="button2_Click" />   
    33.             <CE:Editor ID="editor1" runat="server" Visible="false">   
    34.             </CE:Editor>   
    35.             <CE:Editor ID="editor2" runat="server" Visible="false">   
    36.             </CE:Editor>   
    37.         </div>   
    38.     </form>   
    39. </body>   
    40. </html>   
    41.   
    42. <script>   
    43. function CuteEditor_OnCommand(editor,command,ui,value)   
    44.         {   
    45.             alert(command);   
    46.             //handle the command by command name,like   
    47. //          if(command=="New")   
    48. //          {   
    49. //          alert("New");   
    50. //              return true;   
    51. //          }   
    52.         }   
    53. </script>  

    Regards,
     
    Ken
View Complete Thread