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.
60 lines (57 loc) • 2.12 kB
HTML
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<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>many input fields</title>
<script type="text/javascript" src="../deviceTheme.js" data-dojo-config="mblThemeFiles: ['base']"></script>
<script type="text/javascript" src="../../../dojo/dojo.js" data-dojo-config="async: true, parseOnLoad: true, mblAlwaysHideAddressBar: true"></script>
<script type="text/javascript">
require([
"dojox/mobile/parser",
"dojox/mobile",
"dojox/mobile/compat",
"dojox/mobile/ScrollableView"
]);
</script>
</head>
<body style="visibility:hidden;">
<div data-dojo-type="dojox.mobile.View">
<div data-dojo-type="dojox.mobile.ScrollableView">
<input type="text" value="1"><br>
<input type="text" value="2"><br>
<input type="text" value="3"><br>
<input type="text" value="4"><br>
<input type="text" value="5"><br>
<input type="text" value="6"><br>
<input type="text" value="7"><br>
<input type="text" value="8"><br>
<input type="text" value="9"><br>
<input type="text" value="10"><br>
<input type="text" value="11"><br>
<input type="text" value="12"><br>
<input type="text" value="13"><br>
<input type="text" value="14"><br>
<input type="text" value="15"><br>
<input type="text" value="16"><br>
<input type="text" value="17"><br>
<input type="text" value="18"><br>
<input type="text" value="19"><br>
<input type="text" value="20"><br>
<input type="text" value="21"><br>
<input type="text" value="22"><br>
<input type="text" value="23"><br>
<input type="text" value="24"><br>
<input type="text" value="25"><br>
<input type="text" value="26"><br>
<input type="text" value="27"><br>
<input type="text" value="28"><br>
<input type="text" value="29"><br>
<input type="text" value="30"><br>
<input type="text" value="31"><br>
<input type="text" value="32"><br>
</div>
</div>
</body>
</html>