e44a7e37b6
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
61 lines
1.7 KiB
HTML
61 lines
1.7 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
|
"http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>Dialog Widget Dojo Tests</title>
|
|
|
|
<style type="text/css">
|
|
@import "../../dojo/resources/dojo.css";
|
|
@import "css/dijitTests.css";
|
|
|
|
body { font-family : sans-serif; }
|
|
form { margin-bottom : 0; }
|
|
table { border: none; }
|
|
#dialog3_underlay { background-color: #027 }
|
|
</style>
|
|
|
|
<script type="text/javascript"
|
|
djConfig="parseOnLoad: true, isDebug: true"
|
|
src="../../dojo/dojo.js"></script>
|
|
<script type="text/javascript" src="_testCommon.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
dojo.require("dijit.Dialog");
|
|
dojo.require("dijit.form.Button");
|
|
|
|
// make dojo.toJson() print dates correctly (this feels a bit dirty)
|
|
function createAndShow() {
|
|
var node = document.createElement("div");
|
|
dojo.body().appendChild(node);
|
|
var dlg = new dijit.Dialog({ title: "test input focus" }, node);
|
|
|
|
var input = document.createElement("input");
|
|
dojo.attr(input,"tabIndex","0");
|
|
dlg.containerNode.appendChild(input);
|
|
|
|
var btn = new dijit.form.Button({ label: "Close" });
|
|
dlg.containerNode.appendChild(btn.domNode);
|
|
|
|
dojo.connect(btn, "onClick", function(){
|
|
console.log("destroying, while visible");
|
|
dlg.destroy();
|
|
|
|
});
|
|
dlg.show();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1 class="testTitle">Dijit layout.Dialog tests</h1>
|
|
|
|
<p>If you input this box, you can type. You should be able to type and use backspace/etc
|
|
when you destroy the visible dialog. refs <a href="http://trac.dojotoolkit.org/ticket/5351">#5351</a>
|
|
</p>
|
|
|
|
<input id="testInput" name="foo" value="bar" />
|
|
|
|
<button dojoType="dijit.form.Button" onclick="createAndShow()">Show Dialog</button>
|
|
|
|
</body>
|
|
</html>
|
|
|