1

我正在 extjs 4.0.7 中开发一个表单

我需要将逗号和点等货币的格式更改为千位分隔符和小数部分。

为此,我只需要在文本字段中插入一个符号,在 ExtJS 中我尝试了以下代码:

    {
    xtype       : 'textfield',
    type        : 'string',
    fieldLabel  : '1000s separator:',
    name        : 'amount_separator',
    id          : 'amount_separator',
    maxLength   : 1,
    size        : 1,

    anchor      : '30%'
}

但这无助于我限制单个符号(','或'。')中的插入

我如何需要重新排列控制器文件中代码的属性。

4

1 回答 1

1

您是否尝试过 enforceMaxLength ?为 true 以在基础输入字段上设置 maxLength 属性。默认为假

enforceMaxLength : true
于 2013-04-15T14:19:15.347 回答