Ticket #5424: test.html

File test.html, 1.2 kB (added by guest, 12 months ago)
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2<html>
3    <head>
4        <style type="text/css">
5           
6            @import "http://o.aolcdn.com/dojo/1.0.2/dojo/resources/dojo.css";
7            @import "http://o.aolcdn.com/dojo/1.0.2/dijit/themes/tundra/tundra.css";
8           
9        </style>
10    </head>
11    <body class="tundra">
12        <script type="text/javascript" src="http://o.aolcdn.com/dojo/1.0.2/dojo/dojo.xd.js.uncompressed.js"></script> 
13
14        <script type="text/javascript">
15           
16                        djConfig = {
17                parseOnLoad: true,
18                isDebug: false,
19                usePlainJson: true
20            };
21            dojo.require("dijit.form.FilteringSelect");
22            dojo.require("dojo.parser");
23                       
24                       
25        </script>
26        <input maxlength= "30" size= "30" id= "atextboxbefore">
27                <br>
28                <select id="aselectbox" dojotype= "dijit.form.FilteringSelect" autocomplete= "true" name="aselectbox">
29                        <option value="a">a</option>
30                        <option value="b">b</option>
31                </select>
32                <br>
33                <input maxlength= "30" size= "30" id="atextboxafter">
34    </body>
35</html>