aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dijit/tests/i18n/currency.html
blob: 62108b2affb4b5f8dc17e67cdc5d2abcdfec2a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!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 CurrencyTextBox</title>

		<script type="text/javascript" src="../../../dojo/dojo.js"
			djConfig="isDebug: true, extraLocale: ['zh-cn','fr-fr','ja-jp']"></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 Currency</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", and "ja-jp"
			and currencies CNY, EGP, EUR, JPY. If not, convert these CLDR data and put them there.
		</p>

		<script>
		(function() {
			genFormatTestCases("Currency Format", "dijit.form.CurrencyTextBox", [

				{ attrs: {Currency: "CNY", lang: "zh-cn"},
				  desc: "Locale: <b>zh_CN</b> Currency: <b>CNY</b>",
				  value: "123456789.46",
				  expValue: "&#xFFE5;123,456,789.46",
				  comment: ""
				},
				{ attrs: {Currency: "CNY", lang: "zh-cn"},
				  desc: "Locale: <b>zh_CN</b> Currency: <b>CNY</b>",
				  value: "-123456789.46",
				  expValue: "-&#xFFE5;123,456,789.46",
				  comment: ""
				},

				{ attrs: {Currency: "EUR", lang: "fr-fr"},
				  desc: "Locale: <b>fr_FR</b> Currency: <b>EUR</b>",
				  value: "123456789.46",
				  expValue: "123&nbsp;456&nbsp;789,46 &euro;",
				  comment: ""
				},
				{ attrs: {Currency: "EUR", lang: "fr-fr"},
				  desc: "Locale: <b>zh_CN</b> Currency: <b>EUR</b>",
				  value: "-123456789.46",
				  expValue: "-123&nbsp;456&nbsp;789,46 &euro;",
				  comment: ""
				},

				{ attrs: {Currency: "JPY", lang: "ja-jp"},
				  desc: "Locale: <b>ja_JP</b> Currency: <b>JPY</b>",
				  value: "123456789.46",
				  expValue: "&#xFFE5;123,456,789",
				  comment: ""
				},
				{ attrs: {Currency: "JPY", lang: "ja-jp"},
				  desc: "Locale: <b>ja_JP</b> Currency: <b>JPY</b>",
				  value: "-123456789.46",
				  expValue: "-&#xFFE5;123,456,789",
				  comment: ""
				}
			]);

			genValidateTestCases("Currency Validate", "dijit.form.CurrencyTextBox", [

				{ attrs: {Currency: "CNY", lang: "zh-cn"},
				  desc: "Locale: <b>zh_CN</b> Currency: <b>CNY</b>",
				  value: 123456789.46,
				  expValue: "&#xFFE5;123,456,789.46",
				  comment: ""
				},
				{ attrs: {Currency: "CNY", lang: "zh-cn"},
				  desc: "Locale: <b>zh_CN</b> Currency: <b>CNY</b>",
				  value: -123456789.46,
				  expValue: "-&#xFFE5;123,456,789.46",
				  comment: ""
				},

				{ attrs: {Currency: "EUR", lang: "fr-fr"},
				  desc: "Locale: <b>fr_FR</b> Currency: <b>EUR</b>",
				  value: 123456789.46,
				  expValue: "123&nbsp;456&nbsp;789,46 &euro;",
				  comment: ""
				},
				{ attrs: {Currency: "EUR", lang: "fr-fr"},
				  desc: "Locale: <b>zh_CN</b> Currency: <b>EUR</b>",
				  value: -123456789.46,
				  expValue: "-123&nbsp;456&nbsp;789,46 &euro;",
				  comment: ""
				},

				{ attrs: {Currency: "JPY", lang: "ja-jp"},
				  desc: "Locale: <b>ja_JP</b> Currency: <b>JPY</b>",
				  value: 123456789,
				  expValue: "&#xFFE5;123,456,789",
				  comment: ""
				},
				{ attrs: {Currency: "JPY", lang: "ja-jp"},
				  desc: "Locale: <b>ja_JP</b> Currency: <b>JPY</b>",
				  value: -123456789,
				  expValue: "-&#xFFE5;123,456,789",
				  comment: ""
				}
			]);

			dojo.parser.parse();

		})();

		</script>

		<h2 class="testTitle">Issues &amp; Comments</h2>
		<h3 class="testTitle"><a name="cmt_1">Issue #1<sup style="color:blue">Fixed</sup></a></h3>
		<p>
			Some browsers like FireFox have a bug on the non-breaking space character (U+00A0, <b>&amp;nbsp;</b> or <b>&amp;#160;</b> or
			<b>&amp;#xA0;</b> in HTML).
			They always convert the NBSP character to a normal space (U+0020, <b>&amp;#x20;</b> in HTML) automatically in the following circumstances:
        </p>
		<ul>
			<li>Copy text from the page</li>
			<li>Use <b>innerHTML</b> to get the content of a certain element</li>
			<li>Use <b>value</b> to get an <b>INPUT</b> element's value</li>
		</ul>
		
		<p>
			You cannot read a real NBSP character from an <b>INPUT</b> element on these browsers. It causes issues when some formatting data in CLDR
			contains an NBSP character. For example,
		</p>
		<ul>
			<li>Many locales like French use an NBSP character as a group separator in numbers</li>
			<li>French and Finnish use NBSP characters in their percentage and currency format patterns respectively</li>
		</ul>
		
		<p>
			So Dojo may generate formatted data with NBSP characters in it but cannot read NBSP charaters from user's input in some browser.
		</p>

		<h3 class="testTitle"><a name="cmt_2">Issue #2<sup style="color:blue">Fixed: the CLDR data generator should be fixed by adding code to convert U+200F to "\u200F" in nls JS files.</sup></a></h3>
		<p>
			Most Bidi currency symbols contain an LTR-MARK (U+200F) character at the very beginning.
			But Firefox ignores it when it is not in any escaping form. This should be a bug of Firefox.
			For example, click <a href="javascript:alert('‏'.indexOf('\u200F'))"><code>alert('‏'.indexOf('\u+200F'))</code></a> (there is a U+200F in the empty-looking string):
		</p>    
		<ul>
			<li>In Firefox, shows "-1" -- no U+200F found</li>
			<li>In IE &amp; Opera, shows "0" -- the U+200F is found</li>
		</ul>
		<p>
			But if the U+200F is in some escaping form, Firefox will work as well as other browsers.
			Click <a href="javascript:alert('\u200F'.indexOf('\u200F'))"><code>alert('\u200F'.indexOf('\u+200F'))</code></a> to see the same result both in Firefox and IE:
		</p>
		

		<h3 class="testTitle"><a name="cmt_3">Issue #3<sup style="color:blue">Fixed: added a "localeDigit" to the options</sup></a></h3>
		<p>
			Strictly speaking, the data conversion must support non-European number characters in some locales like Arabic and Hindi.
			For example, ICU formats a number data into Indic number characters by default in the Arabic locale.
			However, currently Dojo does not support this feature (Dojo uses the default number conversion of the browser).
		</p>

	</body>
</html>