Sha256: 1610654fde6d9157bf1b2f714ec797782adc9ab80e6f5dbe0e841cf89d2bc7ec

Contents?: true

Size: 1.9 KB

Versions: 7

Compression:

Stored size: 1.9 KB

Contents

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
	"http://www.w3.org/TR/html4/strict.dtd">
<html>
	<head>
		<title>Using scope names inside dojo.require/dojoType</title>

		<link rel="stylesheet" type="text/css" href="../../../../resources/dojo.css">
		<link rel="stylesheet" type="text/css" href="../../../../../dijit/tests/css/dijitTests.css">
		<link rel="stylesheet" type="text/css" href="../../../../../dijit/themes/tundra/tundra.css">
		
		<script type="text/javascript">
			//djConfig for 0.4.3 setup.
			djConfig = {
				isDebug: true,
				parseOnLoad: true,
				baseUrl: "../../../../",
				scopeMap: [
					["dojo", "jodo"],
					["dijit", "jidit"],
					["dojox", "jodox"]					
				]
			};
		</script>

		<script type="text/javascript" src="../../../../dojo.js"></script>
		<script type="text/javascript">

			//Notice that dijit._Calendar is required, not jidit._Calendar.
			//Same for the dojo resources (not jodo resources).
			jodo.require("dijit._Calendar");
			jodo.require("dojo.date.locale");
			jodo.require("dojo.parser"); // scan page for widgets

			jodo.addOnLoad(function(){
				jodo.byId("output10").innerHTML = jodo.version.toString();
			});

			function myHandler(id,newValue){
				console.debug("onChange for id = " + id + ", value: " + newValue);
			}
			function foobar(){
				jodo.byId("typeOut").innerHTML = "typeof dojo: " + (typeof dojo) +  "<br>typeof dijit: " + (typeof dijit) + "<br>typeof dojox: " + (typeof dojox);
			}
			setTimeout(foobar, 2000);
		</script>
	</head>
	<body>
		<h1>Using scope names inside dojo.require/dojoType</h1>
	
		<p><b>NOTE: This test only works with a built version of Dojo.</b></p>

		<p>Jodo version: <span id="output10"></span></p>

		<p><b>typeof dojo, dijit and dojox should be undefined</b>: <br><span id="typeOut"></span></p>

		<p class="tundra">
			<input id="calendar1" jodoType="jidit._Calendar" onChange="myHandler(this.id,arguments[0])">
		</p>
		
	</body>
</html>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
dojo-pkg-1.132.0 data/dojo-release-1.3.2-src/dojo/tests/_base/_loader/scope/scopeSingle.html
dojo-pkg-1.120.0 data/dojo-release-1.2.0-src/dojo/tests/_base/_loader/scope/scopeSingle.html
dojo-pkg-1.121.0 data/dojo-release-1.2.1-src/dojo/tests/_base/_loader/scope/scopeSingle.html
dojo-pkg-1.122.0 data/dojo-release-1.2.2-src/dojo/tests/_base/_loader/scope/scopeSingle.html
dojo-pkg-1.123.0 data/dojo-release-1.2.3-src/dojo/tests/_base/_loader/scope/scopeSingle.html
dojo-pkg-1.130.0 data/dojo-release-1.3.0-src/dojo/tests/_base/_loader/scope/scopeSingle.html
dojo-pkg-1.131.0 data/dojo-release-1.3.1-src/dojo/tests/_base/_loader/scope/scopeSingle.html