I am using jquery ui dialogs in my application. How do I style the "Save" and "Cancel" buttons differently in a jquery dialog? So "Save" is more appealing than the "Cancel". I could use a hyper link for "Cancel", but how do I place that in the same button panel?
|
|
Bellow is shown the example how to add custom classes in jQuery UI Dialog (Version 1.8+):
|
|||||||||
|
|
In jQueryUI 1.8.9 using
|
||||
|
|
|
As of jquery ui version 1.8.16 below is how I got it working.
|
|||
|
I'm using jQuery UI 1.8.13 and the following configuration works as I need:
ps: remember to wrap "class" with quotes because it's a reserved word in js! |
|||
|
|
|
These solutions are all very well if you only have one dialog in the page at any one time, however if you want to style multiple dialogs at once then try:
Instead of globally selecting buttons, this gets the widget object and finds it's button pane, then individually styles each button. This saves lot's of pain when you have several dialogs on one page |
|||
|
|
|
It has been a while since this question was posted, but the following code works across all browsers (note although
|
||||
|
|
I had to use the following construct in jQuery UI 1.8.22:
This removes all formatting and applies the replacement styling as needed. |
||||
|
|
|
I looked at the HTML generated by the UI Dialog. It renders buttons pane like this:
Adding a class to Cancel button should be easy. $('.ui-dialog-buttonpane :last-child').css('background-color', '#ccc'); This will make the Cancel button little grey. You can style this button however you like. Above code assumes that the Cancel button is the last button. The fool proof way to do it would be
|
|||
|
|
|
after looking at some other threads I came up with this solution to add icons to the buttons in a confirm dialog, which seems to work well in version 1.8.1 and can be modified to do other styling:
I'd be interested in seeing if there was a better way to do it, but this seems pretty efficient. |
|||
|
|
|
This function will add a class to every button in you dialog box. You can then style (or select with jQuery) as normal:
|
|||
|
|
|
check out jquery ui 1.8.5 it's available here http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.js and it has the new button for dialog ui implementation |
|||
|
|