views:

44

answers:

1

I need a modal dialog to open ontop of an tinyMCE editor and other jQuerified items. I followed the jquery site but its not modal, I can still change and access the rest of the page.

$('#sureDelete').dialog({
                    modal: true,
                    buttons: {
                        "Yes": function(){
                            $('li#'+$id).remove();
                        },
                        "No":function(){
                        }
                    },
                    draggable: false
        });
<div id="dialogs">

<div id="sureDelete">Are you sure you want to delete this page?</div> </div> Also I don't have any styling added to the dialog. Can that be an issue?

+1  A: 

You need to make sure you include the jQueryUI base css file.
I.E.:

<link rel="stylesheet" href="*jQueryUIDir*/css/*themeDir*/jquery-ui-*version*.custom.css"  type="text/css" />
zipcodeman
Right Answer that definitely made it work. Thanks
Theopile
really?... how come in this demo without the css, everything still works? http://jsfiddle.net/M6HHV/
Reigel
Not sure. Could it be using the jquery ui core css?
Theopile