次のコードを持つ:
$('#feedback_dialog_container').dialog({
modal: true,
closeOnEscape: false,
title: "Title",
height: 650,
width: 600,
buttons: [{
text: "Send",
click: function() {
// ...
}
}]
});
ボタンはダイアログに表示されません。何かヒントやヒントがありませんか?
PS:@palmplamからこの例も試しましたが、どちらも機能しませんでした:
$('#feedback_dialog_container').dialog({
modal: true,
closeOnEscape: false,
title: "Title",
height: 650,
width: 600,
buttons: {"Send" : function() {
// ...
}
}
});