Having the following code:
$('#feedback_dialog_container').dialog({
modal: true,
closeOnEscape: false,
title: "Title",
height: 650,
width: 600,
buttons: [{
text: "Send",
click: function() {
// ...
}
}]
});
The button is not visible in the dialog. Any tips or hints, do I miss something?
PS: I tried this example from @palmplam too, not working either:
$('#feedback_dialog_container').dialog({
modal: true,
closeOnEscape: false,
title: "Title",
height: 650,
width: 600,
buttons: {"Send" : function() {
// ...
}
}
});
Try to add buttons like this :
With your code, it’s like this :
Or perhaps you could add buttons after the dialog was init like this :