Define pattern for dijit.form.NumberTextBox
<html> <head> <link rel="StyleSheet" type="text/css" href="js/dojo/dijit/themes/tundra/tundra.css"> <script type="text/javascript"> var djConfig = { baseScriptUri : "js/dojo/", parseOnLoad : true }; </script> <script type="text/javascript" src="js/dojo/dojo/dojo.js"></script> <script> dojo.require("dojo.parser"); dojo.require("dijit.form.NumberTextBox"); </script> </head> <body class="tundra"> <input constraints="{pattern: '#.##%'}" dojoType="dijit.form.NumberTextBox"> </body> </html>
1. | Create number box(dijit.form.NumberTextBox) and set value | ![]() | |
2. | Simplest dijit.form.NumberTextBox | ![]() |