| 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
|---|
| 2 | "http://www.w3.org/TR/html4/strict.dtd"> |
|---|
| 3 | <html> |
|---|
| 4 | <head> |
|---|
| 5 | <title>Simple Tagger</title> |
|---|
| 6 | <style type="text/css"> |
|---|
| 7 | @import "http://o.aolcdn.com/dojo/1.0.0/dijit/themes/tundra/tundra.css"; |
|---|
| 8 | @import "http://o.aolcdn.com/dojo/1.0.0/dojo/resources/dojo.css"; |
|---|
| 9 | body { padding: 5em; } |
|---|
| 10 | html body .mine { width: 20em ! important; background-color: yellow ! important; } |
|---|
| 11 | #widget_frogin { width: 30em; } |
|---|
| 12 | </style> |
|---|
| 13 | <script type="text/javascript" src="http://o.aolcdn.com/dojo/1.0.0/dojo/dojo.xd.js" |
|---|
| 14 | djConfig="isDebug: true, parseOnLoad: false"></script> |
|---|
| 15 | <script type="text/javascript" src="/dijit.Tagger.js"></script> |
|---|
| 16 | <script type="text/javascript"> |
|---|
| 17 | dojo.require("dojo.parser"); |
|---|
| 18 | dojo.addOnLoad(function() { |
|---|
| 19 | dojo.parser.parse(); |
|---|
| 20 | }); |
|---|
| 21 | </script> |
|---|
| 22 | </head> |
|---|
| 23 | <body class="tundra"> |
|---|
| 24 | <div dojoType="dojo.data.ItemFileReadStore" mimetype="text/json-comment-filtered" jsId="memberTagStore" |
|---|
| 25 | url="/tagger.json"></div> |
|---|
| 26 | |
|---|
| 27 | <input dojoType="dijit.quelib.Tagger" id="frogin" |
|---|
| 28 | store="memberTagStore" |
|---|
| 29 | value="" |
|---|
| 30 | searchAttr="tag" |
|---|
| 31 | name="tags" /> |
|---|
| 32 | </body> |
|---|
| 33 | </html> |
|---|