ここで、はい/いいえボタンを備えた Dojo 確認ダイアログを見つけました。少し修正しましたが、うまくいきません。(修正しなくても動作しないことを付け加えておく必要があります)
Firebug は 2 種類の問題を明らかにします。
1, SyntaxError: missing : after property id
dialog.hide();
と
2, dojo/parser::parse() error
[Exception... "Node was not found" code: "8" nsresult: "0x80530008 (NotFoundError)" location: "https://gaia.acrys.com:8843/arranger/dojo/dojo.js Line: 226"] { constructor=DOMException, code=
言うまでもなく、私は道場の第一人者ではありませんが、以下のコードは私にとって論理的に見えるので、修正方法がわかりません。
これが私のコードです: `
<script type="text/javascript">
dojo.require("dijit.form.Button");
dojo.require("dijit.Dialog");
dojo.require("dijit.layout.TabContainer");
dojo.require("dijit.layout.ContentPane");
var dialog = new dijit.Dialog({
title: "Delete Switch Type",
style: "width: 400px",
content : "Do you really want to delete ?????<br/>"
});
//Creating div element inside dialog
var div = dojo.create('div', {}, dialog.containerNode);
dojo.style(dojo.byId(div), "float", "left");
var noBtn = new dijit.form.Button({
label: "Cancel",
onClick: function(){
dialog.hide();
dojo.destroy(dialog);
}
});
var yesBtn = new dijit.form.Button({
label: "Yes",
style : "width : 60px",
onClick : alert("I clicked yes"),
dialog.hide();
dojo.destroy(dialog);
}
});
//adding buttons to the div, created inside the dialog
dojo.create(yesBtn.domNode,{}, div);
dojo.create(noBtn.domNode,{}, div);
</script>`
そして私はそれを次のように呼びます:
<button data-dojo-type="dijit/form/Button" type="submit" name="deleteIdx" value="19524803" onclick="dialog.show();">
どんなアドバイスでも大歓迎です。