This commit is contained in:
Éric Lemoine
2013-02-20 10:38:25 +01:00
parent 17c3936ab6
commit 5d14b9e2d4
1919 changed files with 559755 additions and 2588 deletions

View File

@@ -0,0 +1,31 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>FixedSplitter Test</title>
<style type="text/css">
@import "../themes/common/FixedSplitter.css";
html, body{
width: 100%;
height: 100%;
padding: 0px;
margin: 0px;
overflow: hidden;
}
</style>
<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="parseOnLoad: true"></script>
<script language="JavaScript" type="text/javascript">
dojo.require("dojo.parser");
dojo.require("dojox.mobile.FixedSplitter");
</script>
</head>
<body>
<div dojoType="dojox.mobile.FixedSplitter" orientation="H">
<div dojoType="dojox.mobile.FixedSplitterPane" style="background-color:yellow;width:200px;">
pane #1 (width=200px)
</div>
<div dojoType="dojox.mobile.FixedSplitterPane" style="background-color:pink;">
pane #2
</div>
</div>
</body>
</html>