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
1145
IGHTMLEditor doesn't work in Firefox inside a jQuery Dialog
posted

The IGHtmlEditor does not work properly when you place it inside a jQuery-ui dialog, running on Firefox. It seems to work fine in IE and Chrome.

All you need is some HTML:

    <div id="dialog" style="display: none;">
            @(Html.Infragistics().HtmlEditor().ID("igHtmlEditor").Render())
    </div>

Then some JavaScript.

$("#dialog").dialog({ width: 600, height: 600, modal: true, autoOpen: false });
$("#dialog").dialog("open");
 

This is causing us a huge headache.

As for what's wrong, pretty much all the functionality is broken (try using the toolbar). It's also got rendering problems. We're using Firefox 22.0

Thanks.

Parents
No Data
Reply
  • 4315
    Offline posted

    Hi, Pete.

    Thank you for using our products and I hope that I can help you.

    I guess you've already checked this sample in our samples browser. It is working in Firefox. If you can use it that will be great. Meanwhile I will try to isolate your sample and see what the problem is. I will be glad if you have more specific information, especially about the version of the controls.

    Thank you and I will wait for your feedback.

    Best regards,

    Nikolay Alipiev

Children