CurrencyTextBox.js 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. define("dijit/form/CurrencyTextBox", [
  2. "dojo/currency", // currency._mixInDefaults currency.format currency.parse currency.regexp
  3. "dojo/_base/declare", // declare
  4. "dojo/_base/lang", // lang.hitch
  5. "./NumberTextBox"
  6. ], function(currency, declare, lang, NumberTextBox){
  7. /*=====
  8. var NumberTextBox = dijit.form.NumberTextBox;
  9. =====*/
  10. // module:
  11. // dijit/form/CurrencyTextBox
  12. // summary:
  13. // A validating currency textbox
  14. /*=====
  15. declare(
  16. "dijit.form.CurrencyTextBox.__Constraints",
  17. [dijit.form.NumberTextBox.__Constraints, currency.__FormatOptions, currency.__ParseOptions], {
  18. // summary:
  19. // Specifies both the rules on valid/invalid values (minimum, maximum,
  20. // number of required decimal places), and also formatting options for
  21. // displaying the value when the field is not focused (currency symbol,
  22. // etc.)
  23. // description:
  24. // Follows the pattern of `dijit.form.NumberTextBox.constraints`.
  25. // In general developers won't need to set this parameter
  26. // example:
  27. // To ensure that the user types in the cents (for example, 1.00 instead of just 1):
  28. // | {fractional:true}
  29. });
  30. =====*/
  31. return declare("dijit.form.CurrencyTextBox", NumberTextBox, {
  32. // summary:
  33. // A validating currency textbox
  34. // description:
  35. // CurrencyTextBox is similar to `dijit.form.NumberTextBox` but has a few
  36. // extra features related to currency:
  37. //
  38. // 1. After specifying the currency type (american dollars, euros, etc.) it automatically
  39. // sets parse/format options such as how many decimal places to show.
  40. // 2. The currency mark (dollar sign, euro mark, etc.) is displayed when the field is blurred
  41. // but erased during editing, so that the user can just enter a plain number.
  42. // currency: [const] String
  43. // the [ISO4217](http://en.wikipedia.org/wiki/ISO_4217) currency code, a three letter sequence like "USD"
  44. currency: "",
  45. /*=====
  46. // constraints: dijit.form.CurrencyTextBox.__Constraints
  47. // Despite the name, this parameter specifies both constraints on the input
  48. // (including minimum/maximum allowed values) as well as
  49. // formatting options. See `dijit.form.CurrencyTextBox.__Constraints` for details.
  50. constraints: {},
  51. ======*/
  52. baseClass: "dijitTextBox dijitCurrencyTextBox",
  53. // Override regExpGen ValidationTextBox.regExpGen().... we use a reg-ex generating function rather
  54. // than a straight regexp to deal with locale (plus formatting options too?)
  55. regExpGen: function(constraints){
  56. // if focused, accept either currency data or NumberTextBox format
  57. return '(' + (this.focused ? this.inherited(arguments, [ lang.mixin({}, constraints, this.editOptions) ]) + '|' : '')
  58. + currency.regexp(constraints) + ')';
  59. },
  60. // Override NumberTextBox._formatter to deal with currencies, ex: converts "123.45" to "$123.45"
  61. _formatter: currency.format,
  62. _parser: currency.parse,
  63. parse: function(/*String*/ value, /*Object*/ constraints){
  64. // summary:
  65. // Parses string value as a Currency, according to the constraints object
  66. // tags:
  67. // protected extension
  68. var v = this.inherited(arguments);
  69. if(isNaN(v) && /\d+/.test(value)){ // currency parse failed, but it could be because they are using NumberTextBox format so try its parse
  70. v = lang.hitch(lang.mixin({}, this, { _parser: NumberTextBox.prototype._parser }), "inherited")(arguments);
  71. }
  72. return v;
  73. },
  74. _setConstraintsAttr: function(/*Object*/ constraints){
  75. if(!constraints.currency && this.currency){
  76. constraints.currency = this.currency;
  77. }
  78. this.inherited(arguments, [ currency._mixInDefaults(lang.mixin(constraints, { exponent: false })) ]); // get places
  79. }
  80. });
  81. });