Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
205
Popup menu in wrong position
posted

Hello

I enter a few lines in the editor and then I click on the last line the right mouse. The popup menu shows on a complete wrong position. Why?


Browser IE9

What can I do that that doesn't happen?

Regards

Xaver

Parents
  • 24497
    posted

    Hi Xavier,

    Thank you for report.
    I tested following and it seems to work ok under IE9. Pop-up appeared next to clicked mouse.

    <%@ Page Language="C#" AutoEventWireup="true" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
    <html xmlns="
    http://www.w3.org/1999/xhtml ">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
        <ighedit:WebHtmlEditor ID="WebHtmlEditor1" Height="500px" runat="server"></ighedit:WebHtmlEditor>
        </form>
    </body>
    </html>

    There were some recent fixes to WebHtmlEditor related to FindReplace and clicks on toolbar buttons. Because IE9 has strange mousedown-focus problems. I tested fixed version (which I have on my machine), but, I think, that those fixes should not affect mousedown-focus within editing area.

    You may create a temporary aspx in your website and copy these codes. If they have same issue, then you will have to wait until service release to update NetAdvantage.

  • 205
    posted in reply to [Infragistics] Viktor Snezhko

    Hello Viktor

    I found the problem that I have with the WebHtmlEditor. If I have a table in the HTML code and I call in the second row of the table the popup menu then it not open on the correct position. You can check this in your sample App (http://samples.infragistics.com/2010.3/WebFeatureBrowser/Default.aspx). Open the "WebHtmlEditor with WebSpellChecker", then click on HTML and insert the following Code:

    <h3>Using the WebSpellChecker with the WebHtmlEditor </h3>
    The WebSpellChecker can easily be attached to the WebHtmlEditor in three simple steps. <br>
    <br>
    <table>
     <tbody>
      <tr>
       <td>
         Add a WebSpellChecker and a WebHtmlEditor to your WebForm.  <br>
         Set the SpellCheckerId property on the WebHtmlEditor to the ClientId of your WebSpellChecker...... <br>
       </td>
      </tr>
      <tr>
       <td>
         On the WebHtmlEditor, go to the ToolBar/Items property. Then select AddButton and select the SpellCheck Button. <br>
       </td>
      </tr>
      <tr>
       <td>
         Thats it! Now you are ready to go, run your application. Type some text, and click the SpellCheck button (The Last Button, on the Last Row).<br>
       </td>
      </tr>
     </tbody>
    </table>
    Now go return to the design mode and oben on the last line the popup menu. The result is this:

    The same problem you have in IE8 and IE9. In Firefox 4, Chrome or Safari browsers the problem is much worse than in IE.

    Regards

    Xaver

Reply Children