sample skeleton application with dojo toolkit & arcgis js api v 4.30
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

64 lines
1.6 KiB

<!DOCTYPE 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>ScrollablePane</title>
<script type="text/javascript" src="../deviceTheme.js" data-dojo-config="mblThemeFiles: ['base','ScrollablePane']"></script>
<script type="text/javascript" src="../../../dojo/dojo.js" data-dojo-config="async: true, parseOnLoad: true"></script>
<script type="text/javascript">
require([
"dojo/_base/connect",
"dojo/dom",
"dojo/dom-class",
"dojo/ready",
"dijit/registry",
"dojox/mobile/parser",
"dojox/mobile",
"dojox/mobile/ScrollablePane",
"dojox/mobile/compat"
], function(connect, dom, domClass, ready, registry){
});
</script>
<style>
.mblScrollablePane {
background-color: yellow;
color: black;
}
</style>
</head>
<body style="visibility:hidden;">
<div id="view1" data-dojo-type="dojox.mobile.View" style="height:100px">
Make sure that the input fields are focused when touched or clicked.
<div id="pane1" data-dojo-type="dojox.mobile.ScrollablePane" data-dojo-props='height:"inherit"'>
hello<br>
<input><br>
hello<br>
<input><br>
hello<br>
<input><br>
hello<br>
<input><br>
hello<br>
<input><br>
hello<br>
<input><br>
hello<br>
<input><br>
hello<br>
<input><br>
hello<br>
<input><br>
hello<br>
<input><br>
hello<br>
<input><br>
hello<br>
</div>
</div>
</body>
</html>