Setup min, max and fractional constraints for CurrencyTextBox : CurrencyTextBox « Dojo toolkit « JavaScript DHTML






Setup min, max and fractional constraints for CurrencyTextBox

 
<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.CurrencyTextBox");

         
    </script>
  </head>
  <body class="tundra">
    <input dojoType="dijit.form.CurrencyTextBox" constraints="{min:1,max:100,fractional:true}" currency="USD"/>
     
</body>
</html>

   
  








Dojo-toolkit.zip( 3,849 k)

Related examples in the same category

1.Create currency field
2.Create currency field programmatically