How do I remove the buttons in a jquery dialog? Per example, I tried re-calling .dialog with the correct new options, but the dialog seems unaffected.

$('.selector').dialog('option', 'buttons', {} ); does not work, and nor does it work if actual new button strings and functions are declared.

Thoughts?

link|improve this question

1  
Can you post more sample code? – Juan Manuel Jul 15 '09 at 17:38
As it turns out, this does work, but it'll silently fail if your syntax is dialog({'option',...}); – Stefan Kendall Jul 15 '09 at 20:21
Care to add an answer that notes the correct syntax that will not cause it to silently fail then? I've got that problem now, and the correct answer would be appreciated. – Remi Despres-Smyth May 10 '10 at 17:48
There is no correct syntax. You can't set the buttons as the dialog loads; rather, you have to set a callback function to be called once the dialog is done loading. i.e. var callback = showDialog(); callback(); – Stefan Kendall May 10 '10 at 20:29
feedback

6 Answers

You are passing new buttons set in a wrong way. Options should be passed as an object.

This will work:

var options = {
    buttons: {}
};
$(selector).dialog('option', options);

No need to destroy and create new dialog.

Of course you can also replace buttons object with a new set of buttons if you wish:

var options = {
    buttons: {
        NewButton: function () {
            $(this).dialog('close');
            // add code here
        }
    }
};
$(selector).dialog('option', options);
link|improve this answer
feedback
up vote 1 down vote accepted

Buttons cannot be added/set while the dialog is loading.

link|improve this answer
feedback

FWIW,

$(".dialog").dialog("option", "buttons", null);
link|improve this answer
feedback

The discussion here is better: http://www.nabble.com/jQuery-dialog-add-remove-button-on-the-fly-td22036498s27240.html

Add in the prescribed extensions and you can just use addbutton and removebutton (should switch to camel case naturally :)

link|improve this answer
feedback

Anotherm, maybe the simplest, and very flexible way to do this is via CSS. (what if you'll eventually need them in the future...).

Looks like:

.ui-dialog-titlebar-close{display:none}

If you like to do it only for some dialogs, you may add dialogClass: option while initializing the dialog, and your css will look like (e.g. you've added myDialogClass as dialogClass, so the whole dialog container will be accessible via this class:

.myDialog  .ui-dialog-titlebar-close{display:none}

Good luck in customizing!

link|improve this answer
feedback

You need to destroy the current one first. Then you can make a new one with the new options you want.

EDIT (to response to comment): I don't know what to tell you. I did the following on my site and WFM.

$('.selector').dialog('destroy');
$('.selector').dialog({ buttons: { "Ok": function() { $(this).dialog("close"); } } });
$('.selector').dialog('open');

You need to return to pre-init state to alter the buttons, which is what destroy does. Maybe I just wasn't clear enough on the steps.

link|improve this answer
Destroying hides. Of course I can destroy the dialog and build it again, but the jquery ui documentation seems to think you can build buttons post-creation. – Stefan Kendall Jul 15 '09 at 19:30
editing to respond to your comment. you need to return to pre-init state before you can alter the buttons. – geowa4 Jul 16 '09 at 0:50
feedback

Your Answer

 
or
required, but never shown

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