123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
- "http://www.w3.org/TR/html4/strict.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>Test NumberTextBox</title>
- <script type="text/javascript" src="../../../dojo/dojo.js"
- djConfig="isDebug: true, extraLocale: ['zh-cn','fr-fr','ar-eg','hi-in']"></script>
- <script type="text/javascript" src="../../../dojo/currency.js"></script>
- <script type="text/javascript" src="../../../dojo/number.js"></script>
- <script type="text/javascript">
- dojo.require("dijit.form.NumberTextBox");
- dojo.require("dijit.form.CurrencyTextBox");
- dojo.require("dijit.form.DateTextBox");
- dojo.require("dijit.form.ValidationTextBox");
- dojo.require("dojo.date.locale");
- dojo.require("dojo.date.stamp");
- dojo.require("dojo.parser"); // scan page for widgets and instantiate them
- dojo.require("doh.runner");
- </script>
- <script src="test_i18n.js"></script>
- <script type="text/javascript">
- dojo.addOnLoad(function(){
- doh.register("t", getAllTestCases());
- doh.run();
- });
- </script>
- <style type="text/css">
- @import "../../../dojo/resources/dojo.css";
- @import "../../themes/tundra/tundra.css";
- @import "../css/dijitTests.css";
- .title {
- background-color:#ddd;
- }
- .hint {
- background-color:#eee;
- }
- .testExample {
- background-color:#fbfbfb;
- padding:1em;
- margin-bottom:1em;
- border:1px solid #bfbfbf;
- }
- .dojoTitlePaneLabel label {
- font-weight:bold;
- }
- td {white-space:nowrap}
- </style>
- </head>
- <body class="tundra">
- <h1 class="testTitle">Dijit TextBox Globalization Test for Number</h1>
- <!-- <h2 class="testTitle">Press the following button to start all test after this page is loaded.</h2>
- <button id="startButton" onclick="startTest()">Start Test</button>-->
- <p>
- Before start this test, make sure the <b>dojo/cldr/nls</b> contains the data for "zh-cn", "fr-fr", "ar-eg" and "hi-in". If not, convert these CLDR data and put them there.
- </p>
- <script>
- (function() {
- genFormatTestCases("Number Format", "dijit.form.NumberTextBox", [
- { attrs: {lang: "zh-cn"},
- desc: "Locale: zh_CN",
- value: "12345.067",
- expValue: "12,345.067",
- comment: ""
- },
- { attrs: {lang: "zh-cn"},
- desc: "Locale: zh_CN",
- value: "-12345.067",
- expValue: "-12,345.067",
- comment: ""
- },
- { attrs: {lang: "fr-fr"},
- desc: "Locale: fr_FR",
- value: "12345.067",
- expValue: "12 345,067",
- comment: "Failed in IE. The currency textbox should not reject the value generated by itself. <a href='currency.html#cmt_1'>See #1 (currency.html).</a>"
- },
- { attrs: {lang: "fr-fr"},
- desc: "Locale: zh_CN",
- value: "-12345.067",
- expValue: "-12 345,067",
- comment: "Failed in IE. The currency textbox should not reject the value generated by itself. <a href='currency.html#cmt_1'>See #1 (currency.html).</a>"
- },
- { attrs: {lang: "ar-eg"},
- desc: "Locale: ar_EG",
- value: "12345.067",
- expValue: "12٬345٫067",
- comment: ""
- },
- { attrs: {lang: "ar-eg"},
- desc: "Locale: ar_EG",
- value: "-12345.067",
- expValue: "12٬345٫067-",
- comment: ""
- },
- { attrs: {lang: "ar-eg", constraints: "{localeDigit: true}"},
- desc: "Locale: ar_EG",
- value: "12345.067",
- expValue: "١٢\u066C٣٤٥\u066B٠٦٧",
- comment: "<a href='currency.html#cmt_2'>See #2 (currency.html).</a>"
- },
- { attrs: {lang: "ar-eg", constraints: "{localeDigit: true}"},
- desc: "Locale: ar_EG",
- value: "-12345.067",
- expValue: "١٢\u066C٣٤٥\u066B٠٦٧-",
- comment: "<a href='currency.html#cmt_2'>See #2 (currency.html).</a>"
- },
- { attrs: {lang: "hi-in", constraints: "{localeDigit: true}"},
- desc: "Locale: hi_IN",
- value: "123456789.068",
- expValue: "१२,३४,५६,७८९.०६८",
- comment: "<a href='currency.html#cmt_2'>See #2 (currency.html).</a>"
- },
- { attrs: {lang: "hi-in", constraints: "{localeDigit: true}"},
- desc: "Locale: hi_IN",
- value: "-123456789.068",
- expValue: "-१२,३४,५६,७८९.०६८",
- comment: "<a href='currency.html#cmt_2'>See #2 (currency.html).</a>"
- }
- ]);
- genValidateTestCases("Number Validate", "dijit.form.NumberTextBox", [
- { attrs: {lang: "zh-cn"},
- desc: "Locale: zh_CN",
- value: 12345.067,
- expValue: "12,345.067",
- comment: ""
- },
- { attrs: {lang: "zh-cn"},
- desc: "Locale: zh_CN",
- value: -12345.067,
- expValue: "-12,345.067",
- comment: ""
- },
- { attrs: {lang: "fr-fr"},
- desc: "Locale: fr_FR",
- value: 12345.067,
- expValue: "12 345,067",
- comment: "Failed in IE. <a href='currency.html#cmt_1'>See #1 (currency.html).</a>"
- },
- { attrs: {lang: "fr-fr"},
- desc: "Locale: zh_CN",
- value: -12345.067,
- expValue: "-12 345,067",
- comment: "Failed in IE. <a href='currency.html#cmt_1'>See #1 (currency.html).</a>"
- },
- { attrs: {lang: "ar-eg"},
- desc: "Locale: ar_EG",
- value: 12345.067,
- expValue: "12٬345٫067",
- comment: ""
- },
- { attrs: {lang: "ar-eg"},
- desc: "Locale: ar_EG",
- value: -12345.067,
- expValue: "12٬345٫067-",
- comment: ""
- },
- { attrs: {lang: "ar-eg", constraints: "{localeDigit: true}"},
- desc: "Locale: ar_EG",
- value: 12345.067,
- expValue: "١٢\u066C٣٤٥\u066B٠٦٧",
- comment: "<a href='currency.html#cmt_2'>See #2 (currency.html).</a>"
- },
- { attrs: {lang: "ar-eg", constraints: "{localeDigit: true}"},
- desc: "Locale: ar_EG",
- value: -12345.067,
- expValue: "١٢\u066C٣٤٥\u066B٠٦٧-",
- comment: "<a href='currency.html#cmt_2'>See #2 (currency.html).</a>"
- },
- { attrs: {lang: "hi-in", constraints: "{localeDigit: true}"},
- desc: "Locale: hi_IN",
- value: 123456789.068,
- expValue: "१२,३४,५६,७८९.०६८",
- comment: "<a href='currency.html#cmt_2'>See #2 (currency.html).</a>"
- },
- { attrs: {lang: "hi-in", constraints: "{localeDigit: true}"},
- desc: "Locale: hi_IN",
- value: -123456789.068,
- expValue: "-१२,३४,५६,७८९.०६८",
- comment: "<a href='currency.html#cmt_2'>See #2 (currency.html).</a>"
- }
- ]);
- dojo.parser.parse();
- })();
- </script>
- </body>
- </html>
|