i've defined a dialog with 2 buttons: ok + cancel. what i want to do now is change the ok button's function after initialization, so i tried:
dlgPrompt.dialog({
buttons: {
'Ok': function() {
myFunction();
$(this).dialog('close');
}
}
});
unfortunately it doesnt work (when clicking ok, nothing happens). anyone knows whats wrong?
thx
You need to call the 'option'
method, like this:
dlgPrompt.dialog('option', 'buttons', {
'Ok': function() {
myFunction();
$(this).dialog('close');
}
});
dlgPrompt.parent().find(".ui-dialog-buttonset .ui-button-text:eq(0)").text("FirstButton");
dlgPrompt.parent().find(".ui-dialog-buttonset .ui-button-text:eq(1)").text("SecondButton");
etc..
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With