HTML Editor Z-Index Issue

Posted By Tim Mon 27 Feb 2012
Add to Favorites0
Author Message
Tim
 Posted Mon 27 Feb 2012
Supreme Being

Supreme Being - (3,341 reputation)Supreme Being - (3,341 reputation)Supreme Being - (3,341 reputation)Supreme Being - (3,341 reputation)Supreme Being - (3,341 reputation)Supreme Being - (3,341 reputation)Supreme Being - (3,341 reputation)Supreme Being - (3,341 reputation)Supreme Being - (3,341 reputation)

Group: Forum Members
Last Active: Tue 3 Dec 2013
Posts: 6, Visits: 27
Hi All,

Current version used: 1.3004

There seems to be a bug with the HTML editor in the back end in most browsers bar IE. The context menu on right-click appears below the editor window:

http://www.freeaspnetcart.com/Uploads/Images/95df0717-9ec3-42e0-919b-000a.jpg

I have had to make a temporary workaround by handling the click of the ui buttons and changing the z-index myself: 

        $(document).ready(function () {
            $('.icon_edit').bind("click", function () {
                setTimeout(function () {
                    $('.icon_html').hide();
                    setTimeout(function () {
                        $('.icon_html').bind("click", function () {
                            setTimeout(function () {
                                $('.popup.htmleditor').css("z-index", "70001");
                            }, 1000);
                        });
                        $('.icon_html').show();
                    }, 3000);
                }, 1000);
            });
        });

Are there any plans to fix this?

Similar Topics

Expand / Collapse

Reading This Topic

Expand / Collapse

Back To Top