Files
openlayers/master/examples/RoundRectList_Programmatic.html
Éric Lemoine 5d14b9e2d4 Updated
2013-02-20 10:38:25 +01:00

62 lines
2.7 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>Round Rect List</title>
<link href="../../themes/iphone/iphone.css" rel="stylesheet">
<script type="text/javascript" src="../../../../dojo/dojo.js" djConfig="parseOnLoad: true"></script>
<script language="JavaScript" type="text/javascript">
// dojo.require("dojo.parser"); // Use the lightweight parser.
dojo.require("dojox.mobile.parser");
dojo.require("dojox.mobile");
dojo.requireIf(!dojo.isWebKit, "dojox.mobile.compat");
</script>
<script language="JavaScript" type="text/javascript">
dojo.addOnLoad(function(){
var view = dijit.byId("foo");
var demoWidget = new dojox.mobile.RoundRectList();
view.addChild(demoWidget);
var childWidget = new dojox.mobile.ListItem({id:"item1", icon:"../images/i-icon-1.png", rightText:"Off", moveTo:"bar", label:"u1space"});
demoWidget.addChild(childWidget);
childWidget = new dojox.mobile.ListItem({id:"item2", icon:"../images/i-icon-2.png", rightText:"On", moveTo:"bar",label:"u2space"});
demoWidget.addChild(childWidget);
childWidget = new dojox.mobile.ListItem({id:"item3"});
demoWidget.addChild(childWidget);
childWidget.set({rightText:"Off", moveTo:"bar", label :"Wi-Fi"});
view = dijit.byId("bar");
demoWidget = new dojox.mobile.RoundRectList();
view.addChild(demoWidget);
childWidget = new dojox.mobile.ListItem({rightText:"Off", label:"Video"});
demoWidget.addChild(childWidget);
childWidget = new dojox.mobile.ListItem({icon:"../images/i-icon-1.png", rightText:"VPN", label:"Maps"});
demoWidget.addChild(childWidget);
childWidget = new dojox.mobile.ListItem({rightText:"Off", label:"Phone Number"});
demoWidget.addChild(childWidget);
});
</script>
</script>
<script type="text/javascript" src="TestUtil.js"></script>
<script type="text/javascript" src="RoundRectList.js"></script>
</head>
<body>
<div id="foo" dojoType="dojox.mobile.View" selected="true">
<h1 dojoType="dojox.mobile.Heading">Mobile Mashup</h1>
<h2 id="Category" dojoType="dojox.mobile.RoundRectCategory">Spaces</h2>
<ul id="RoundRectList1" dojoType="dojox.mobile.RoundRectList">
</ul>
</div>
<div id="bar" dojoType="dojox.mobile.View">
<h1 dojoType="dojox.mobile.Heading" back="Spaces" moveTo="foo">u1space</h1>
<h2 dojoType="dojox.mobile.RoundRectCategory">Applications</h2>
</div>
</body>
</html>