Re: Big problem with images styled to 100% width when within table in IE8

  •  08-17-2012, 8:56 AM

    Re: Big problem with images styled to 100% width when within table in IE8

    Hi Bloodcarver,
     
    Yes, you can catch it in API CuteEditor_OnCommand.
    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 id="Head1" runat="server">  
    7.     <title>example</title>  
    8. </head>  
    9. <body>  
    10.     <form id="form1" runat="server">  
    11.         <CE:Editor ID="editor1" runat="server">  
    12.         </CE:Editor>  
    13.     </form>  
    14. </body>  
    15. </html>  
    16. <script>  
    17. function CuteEditor_OnCommand(editor,command,ui,value)  
    18.  {  
    19.     //handle the command by yourself  
    20.    if(command=="TabEdit")  
    21.    {  
    22.         //click on notmal view  
    23.    }  
    24.    if(command=="TabCode")  
    25.    {  
    26.        //click on html view  
    27.    }  
    28. }  
    29. </script>  
    Regards,
     
    Ken 
View Complete Thread