Hi there,
I'm using jQueryUI to build some modal boxes. I've created and implemented a default theme. My problem is that there are no classes applied to the buttons which I create through the dialog prefences
var userSettingsDialog = jQuery('#userSettingsDialog').dialog({
autoOpen: false,
buttons: { "Save": function() { jQuery(this).dialog('close'); },
"Cancel": function() { jQuery(this).dialog('close'); }
},
modal: true
});
It creates the two buttons but they don't have any class supplied
<button type="button">Save</button>
<button type="button">Cancel</button>
Am I missing something?