| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html> |
|---|
| 2 | <head> |
|---|
| 3 | <title>Demo Application</title> |
|---|
| 4 | <style type="text/css"> |
|---|
| 5 | <!-- |
|---|
| 6 | @import "http://o.aolcdn.com/dojo/1.1.1/dijit/themes/tundra/tundra.css"; |
|---|
| 7 | --> |
|---|
| 8 | </style> |
|---|
| 9 | <script type="text/javascript"> |
|---|
| 10 | //<![CDATA[ |
|---|
| 11 | var djConfig = {"usePlainJson":true,"isDebug":true,"parseOnLoad":true}; |
|---|
| 12 | //]]> |
|---|
| 13 | </script> |
|---|
| 14 | <script type="text/javascript" src="http://o.aolcdn.com/dojo/1.1.1/dojo/dojo.xd.js"></script> |
|---|
| 15 | |
|---|
| 16 | <script type="text/javascript"> |
|---|
| 17 | //<![CDATA[ |
|---|
| 18 | dojo.require("dijit.form.CurrencyTextBox"); |
|---|
| 19 | //]]> |
|---|
| 20 | </script> |
|---|
| 21 | </head> |
|---|
| 22 | <body class="tundra"> |
|---|
| 23 | <h2>Sample Form Elements</h2> |
|---|
| 24 | <label for="textboxtab-currencybox" class="required">CurrencyTextBox</label> |
|---|
| 25 | <input id="textboxtab-currencybox" name="textboxtab[currencybox]" value="" type="text" currency="USD" invalidMessage="Invalid amount. Include dollar sign, commas, and cents." constraints="{'fractional':'true'}" required="1" dojoType="dijit.form.CurrencyTextBox" /> |
|---|
| 26 | </body> |
|---|
| 27 | </html> |
|---|