UNPKG

dojox

Version:

Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.

37 lines (32 loc) 1.41 kB
<!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>Switch</title> <link href="../../../themes/iphone/base.css" rel="stylesheet"/> <link href="../../../themes/common/domButtons.css" rel="stylesheet"/> <script type="text/javascript" src="../../../../../dojo/dojo.js" data-dojo-config="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 type="text/javascript" src="CreateListItem_Programmatic.js"></script> <script type="text/javascript" src="../TestUtil.js"></script> <script type="text/javascript" src="ListItem.js"></script> </head> <body> <div id="foo" dojoType="dojox.mobile.View" selected="true"> <ul dojoType="dojox.mobile.RoundRectList"> </ul> <ul dojoType="dojox.mobile.RoundRectList" iconBase="../../images/i-icon-all.png"> </ul> <ul dojoType="dojox.mobile.EdgeToEdgeList"> </ul> <ul dojoType="dojox.mobile.EdgeToEdgeList"> </ul> </div> </body> </html>