Problem with AutoAdjust Height when using Chome 4.1

Last post 11-23-2010, 8:12 PM by cutechat. 4 replies.
Sort Posts: Previous Next
  •  03-23-2010, 10:34 AM 59595

    Problem with AutoAdjust Height when using Chome 4.1

    hi
     
    when using chrome 4.1  in Nomal mode every Keypress Event extends the height of the textbox
     
    with chrome 4.1 and type some chars into the textbox (nomal mode) of cuteeditor
     
    regards from germany
  •  03-23-2010, 2:39 PM 59604 in reply to 59595

    Re: Problem with AutoAdjust Height when using Chome 4.1

    Dear transresult,
     
    We can reproduce this issue, we will investigate it, thank you for reporting.
     
    Regards,
    Eric
  •  11-22-2010, 9:48 AM 65114 in reply to 59595

    Re: Problem with AutoAdjust Height when using Chome 4.1

    Hi transresult,
     
    my problem is the same, I have reported it months ago... Maybe you could help me with a workaround... 
     
    If I change "AutoAdjust" option to "PlusMinus" is there a way to execute autoadjusting on load time, so when author wants to edit content first gets the autoadjusted height and then can choose plus or minus during editing... that could work fine in Chrome.
     
    Regards,
    Marko 
  •  11-22-2010, 12:51 PM 65116 in reply to 65114

    Re: Problem with AutoAdjust Height when using Chome 4.1

    Dear Marko,
     
    Please try the following code:
     

    <%@ Page Language="C#"%>
    <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>
    <html>
        <head>  
     </head>
     <body>
            <form id="Form1" runat="server">   
          <CE:Editor id="Editor1"  AutoConfigure="Simple" Height="200" ResizeMode="AutoAdjust" ThemeType="Office2007" runat="server"/> <br />      
          <asp:Literal ID="Literal1" Runat="server" />       
      </form>
     </body>
    </html>

    <script runat="server">
     void Page_Load(object sender, System.EventArgs e)
      {
         if (IsPostBack)
         {
                 Literal1.Text = "<h2>The HTML you typed is...</h2><br>";
                 Literal1.Text += Server.HtmlEncode(Editor1.XHTML);
         }
         else
          {
                Editor1.Height=355;
                Editor1.ResizeMode = EditorResizeMode.PlusMinus;
                Editor1.Text = "This is some more test text.<br>This is some more test text.<br>This is some more test text.<br>
               This is some more test text.<br>This is some more test text.<br>This is some more test text.<br>This is some more test text.<br>";
          }  
      } 
    </script>
     
    Thank you for your business
  •  11-23-2010, 8:12 PM 65135 in reply to 59595

    Re: Problem with AutoAdjust Height when using Chome 4.1

    Hi,
     
    We have fixed this issue.
     
    And will provide an update announcement in the forums soon.
     
    Regards,
    Terry
     
View as RSS news feed in XML