vote up 0 vote down star

Hi all, I'm looking to style a modal dialog (using UI Dialog) with unique CSS that is separate from the traditional dialog, so in essence to have two jQuery dialogs that each look different.

I've styled one, for example,

<div id="dialog_style1" class="dialog1 hidden">One content</div>

and another

<div id="dialog_style2" class="dialog2 hidden">Another content</div>

Unfortunately I've noticed that using separate CSS to style parts of the dialog box, like

.dialog1 .ui-dialog-titlebar { display:none; }
.dialog2 .ui-dialog-titlebar { color:#aaa; }

doesn't work because .ui-dialog-titlebar does not have the class .dialog1, and I can't do an addClass either without breaking into the plugin.

An alternative would be to have an element like body have a unique class/id (depending on which one I want) but that would preclude having both dialogs in the same page.

Any ideas?

Thanks in advance!

flag

52% accept rate

4 Answers

vote up 0 vote down

You can add the class to the title like this:

$('#dialog_style1').siblings('div.ui-dialog-titlebar').addClass('dialog1');

link|flag
right, but .ui-dialog-titlebar doesn't have the class .dialog1. .dialog1 {display:none;} will hide the entire contents of the dialog box, which I don't want. – Rio Aug 20 at 19:49
Where is .ui-dialog-titlebar? – Daniel Moura Aug 20 at 19:52
It's part of jQuery dialog (docs.jquery.com/UI/Dialog/Theming) – Rio Aug 20 at 19:54
ok. I was looking at jqModal (dev.iceburg.net/jquery/jqModal) and wasn't finding it. – Daniel Moura Aug 20 at 19:58
edited my answer, check if this works. – Daniel Moura Aug 20 at 20:14
vote up 0 vote down

Have you tried these?

#dialog_style1 .ui-dialog-titlebar { display:none; }
#dialog_style2 .ui-dialog-titlebar { color:#aaa; }

Best recommendation I can give for you is to load the page in Firefox, open the dialog and inspect it with Firebug, then try different selectors in the console, see what works. You may need to use some of the other descendant selectors.

link|flag
Yup. It doesn't work, I've tried, using Firebug as well. That's why I posted ;-) – Rio Aug 20 at 20:10
The whole issue is .ui-dialog-titlebar wraps around #dialog_style1, so while #dialog_style1 applies nicely to the content of the dialog box, it doesn't apply to the title itself. – Rio Aug 20 at 20:11
vote up 1 vote down

The quick answer is based on another response on SO:

Run the following immediately after the dialog is called in the AJAX:

    $(".ui-dialog-titlebar").hide();
    $(".ui-dialog").addClass("customclass");

This applies just to the dialog that is opened, so it can be changed for each one used. Thank you everyone for your quick responses.

link|flag
vote up 0 vote down

The standard way to do this is with jQuery UI's CSS Scopes:

<div class="myCssScope">
   <!-- dialog goes here -->
</div>

Unfortunately, the jQuery UI dialog moves the dialog DOM elements to the end of the document, to fix potential z-index issues. This means the scoping won't work (it will no longer have a ".myCssScope" ancestor).

Christoph Herold designed a workaround which I've implemented as a jQuery plugin, maybe that will help.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.