So I currently have a jQuery dialog with two buttons: Save and Close. I create the dialog using the code below:

$dialogDiv.dialog({
	autoOpen: false,
	modal: true,
	width: 600,
	resizable: false,
	buttons: {
		Cancel: function() {
                        // Cancel code here
		},
		'Save': function() {
                        // Save code here
		}
	},
	close: function() {
		// Close code here (incidentally, same as Cancel code)
	}
});

However, both buttons are the same color when this code is used. I'd like my Cancel button to be a different color than my Save. Is there a way to do this using some built in jQuery options? I didn't get much help from the documentation.

Note that the Cancel button I'm creating is a pre-defined type, but 'Save' I'm defining myself. Not sure if that will have any bearing on the issue.

Any help would be appreciated. Thanks.

UPDATE: Consensus was that there were two roads to travel here:

  1. Inspect the HTML using a Firefox plugin like firebug, and note the CSS classes that jQuery is applying to the buttons, and take a stab at overriding them. Note: in my HTML, both buttons were used the exact same CSS classes and no unique IDs, so this option was out.
  2. Use a jQuery selector on dialog open to catch the button that I wanted, and add a CSS class to it then.

I went with the second option, and used the jQuery find() method as I think this is more appropriate than using :first or :first-child b/c the button that I wanted to change wasn't necessarily the first button listed in the markup. Using find, I can just specify the name of the button, and add CSS that way. The code I ended up with is below:

$dialogDiv.dialog({
	autoOpen: false,
	modal: true,
	width: 600,
	resizable: false,
	buttons: {
		Cancel: function() {
                        // Cancel code here
		},
		'Save': function() {
                        // Save code here
		}
	},
        open: function() {
            $('.ui-dialog-buttonpane').find('button:contains("Cancel")').addClass('cancelButtonClass');
        }
	close: function() {
		// Close code here (incidentally, same as Cancel code)
	}
});
link|improve this question

66% accept rate
feedback

9 Answers

up vote 13 down vote accepted

I’m reposting my answer to a similar question because no-one seems to have given it here and it’s much cleaner and neater:

Use the alternative buttons property syntax:

$dialogDiv.dialog({
    autoOpen: false,
    modal: true,
    width: 600,
    resizable: false,
    buttons: [
        {
            text: "Cancel",
            className: 'cancelButtonClass',
            click: function() {
                // Cancel code here
            }
        },
        {
            text: "Save",
            className: 'saveButtonClass',
            click: function() {
                // Save code here
            }
        }
    ],
    close: function() {
        // Close code here (incidentally, same as Cancel code)
    }
});
link|improve this answer
5  
It seems like with new versions of jQuery UI (or jQuery, I can’t say), you might have change the key for the additional classes from className to "class". – Raphael Schweikert Aug 11 '11 at 6:56
In version > jqueryui 1.8. exists class not className. – kajo Mar 23 at 23:07
@RaphaelSchweikert - This will throw a script error in IE7/8/9, see the solution here: stackoverflow.com/questions/1138291/… – maxp May 2 at 14:38
feedback

You can use the open event handler to apply additional styling:

 open: function(event) {
     $('.ui-dialog-buttonpane').find('button:contains("Cancel")').addClass('cancelButton');
 }
link|improve this answer
feedback

I think there are two ways you can handle that:

  1. Check using something like firebug if there is a difference (in class, id, etc.) between the two buttons and use that to address the specific button
  2. Use something like :first-child to select for example the first button and style that one differently

When I look at the source with firebug for one of my dialogs, it turns up something like:

<div class="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix">
    <button class="ui-state-default ui-corner-all ui-state-focus" type="button">Send</button>
    <button class="ui-state-default ui-corner-all" type="button">Cancel</button>
</div>

So I could for example address the Send button by adding some styles to .ui-state-focus (with perhaps some additional selectors to make sure I override jquery's styles).

By the way, I´d go for the second option in this case to avoid problems when the focus changes...

link|improve this answer
feedback

Select the div which has role dialog then get the appropriate buttons in it and set the CSS.

$("div[role=dialog] button:contains('Save')").css("color", "green");
$("div[role=dialog] button:contains('Cancel')").css("color", "red");
link|improve this answer
other answers saying to use the 'open' dialog option didn't work for me (although the selector I was using was correct if used after the dialog was opened), but this did. – Chris Lawlor Feb 10 '11 at 14:42
feedback

Maybe something like this?

$('.ui-state-default:first').addClass('classForCancelButton');
link|improve this answer
feedback

You should change the word "className" for "class"

buttons: [ 
    { 
        text: "Cancel",
        class: 'ui-state-default2', 
        click: function() { 
            $(this).dialog("close"); 
        } 
    }
],
link|improve this answer
1  
using class: 'ui-state-default2' could cause browser issues since class is a key word in some versions of JavaScript (for reference). Use "class" : 'ui-state-default2' instead. – sgarrett Feb 9 at 19:12
feedback

Why not just inspect the generated markup, note the class on the button of choice and style it yourself?

link|improve this answer
-1, generated markup is not unique – Chris Lawlor Feb 10 '11 at 14:43
He didn't provide the markup. My answer was written a couple hours before his update where he specifies that fact. – rfunduk Apr 15 '11 at 21:20
feedback

I suggest you take a look at the HTML that the code spits out and see if theres a way to uniquely identify one (or both) of the buttons (possibly the id or name attributes), then use jQuery to select that item and apply a css class to it.

link|improve this answer
feedback

The code

$('#myDialog').dialog({
        autoOpen: false,
        height: 450,
        width: 500,
        modal: true,
        resizable: false,
        create: function(){
            $(this).parent().addClass('blueStyle');
        },
        buttons: {
            'Cancel': function() {
            // Cancel code here
            },
            'Modify': function() {
            // Modifiy code here
            },
            'Confirm': function() {
            // Save code here
            }
        },
        open: function() {
            $('.ui-dialog-buttonpane').find('button:contains("Cancel")').addClass('redStyle');
        }
    });

doesn't work for me. Please note that the dialog is already "css-scoped", but also removing the create: function() that adds bluStyle class to the dialog the open: function will not output any significant effect (redStyle won't be applied to the "Cancel" button). What am I doing wrong?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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