Create currency field : CurrencyTextBox « Dojo toolkit « JavaScript Tutorial






<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 type="textbox" dojoType="dijit.form.CurrencyTextBox">
  </body>
</html>








29.57.CurrencyTextBox
29.57.1.Setup min, max and fractional constraints for CurrencyTextBox
29.57.2.Create currency field
29.57.3.Create currency field programmatically