- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想以荷兰语格式格式化用户输入的数字。 IE。使用十进制分隔符作为 , 和千位分隔符作为 。
blur: function () {
Ext.util.Format.number(this.value, '000,000.00')
}
最佳答案
又快又脏,只需设置 thousandSeparator
和 decimalSeparator
。它应该工作:
//Set these once, right after Ext.onReady
Ext.util.Format.thousandSeparator = '.';
Ext.util.Format.decimalSeparator = ',';
//Then this should work:
Ext.util.Format.number(12345.67, '0,000.00'); //output 12.345,67
To allow specification of the formatting string using UK/US grouping characters (,) and decimal (.) for international numbers, add /i to the end. For example: 0.000,00/i
// The "/i" suffix allows caller to use a locale-specific formatting string.
// Clean the format string by removing all but numerals and the decimal separator.
// Then split the format string into pre and post decimal segments according to *what* the
// decimal separator is. If they are specifying "/i", they are using the local convention in the format string.
关于formatting - 如何在 extjs 中使用荷兰语格式格式化数字字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11034662/
以荷兰语(比利时)运行的 Web 服务器 double output; double.TryParse(txtTextbox1.Text, out output); 这是在荷兰语环境中将文本转换为 d
我有一个问题。我在应用程序中处理金额,我需要本地化格式。我使用 java.util.Locale 的 NumberFormat.getCurrencyInstance()。在大多数情况下,它看起来很好
我正在尝试查找四元组英语单词,我尝试更改 alpino,它将荷兰语单词下载为 en 或英语,但它不起作用任何想法? from nltk.util import ngrams from nltk.cor
我有一个支持多语言的 Java 应用程序。当我更改语言时(在首选项对话框中),整个应用程序的语言都会发生变化,包括 JFileChooser 等 Swing 组件的语言。这对英语、西类牙语和法语来说是
我必须创建一个问答系统,通过它我可以使用 SPARQL 和 DBpedia 回答问题。目前,我必须使用不存在的属性对 DBpedia 进行许多无用的查询。我试图获取所有属性并将其放入 txt 文件中,
我的表单有一个奇怪的问题。我有一个用荷兰语工作的 register.php 页面(称为 aanmelden.html),但是当您单击英语按钮时不再工作(称为 register.html),当我比较它们
当我将数据添加到工作簿时,需要将公式从较早的单元格复制到新单元格。 我使用以下公式来计算我的增长率: =WENN(ODER(K9="";L9="");"";WENNFEHLER((L9-K9)/K9;
我是一名优秀的程序员,十分优秀!