ユーザーがさまざまな要件で新しいサーバーをプロビジョニングできるjqueryダイアログウィンドウがあります。ここで、ユーザーが [保存] をクリックすると、確認ウィンドウが開き、ユーザーがこれを実行したいかどうかを確認する必要があります。
私の主な関心事は、これがダイアログ ボックス内のダイアログ ボックスであるということです。
ダイアログボックスのコードは次のとおりです
$('#newenvironment').dialog({
autoOpen: false,
buttons: {
'Save': function() {
var url = "./environment/new/";
// There is code here that processes the fields
// code to send the data to the server
// URL gets built
c.post(url);
$('#newenvironment').dialog('close');
},
'Cancel': function() {
$('#newenvironment').dialog('close');
}
},
modal: true,
width: 640
});
ありがとう :)