Extjs为什么我的numberfeld不接受小数

时间:2013-06-19 11:37:10

标签: asp.net-mvc-3 extjs numbers decimal field

我的号码有问题,看起来像这样 Extjs版本3.4

{
                xtype: 'numberfield',
                fieldLabel: 'Cena',
                name: 'Price',
                id: 'Price',
                allowNegative: false,
                width: 200,
                allowBlank: false,
                decimalPrecision:2,
                blankText: "Proszę podać cenę produktu"
            }

但是当我把99.99放在那时它无效 只接受99

1 个答案:

答案 0 :(得分:1)

问题不在于您发布的代码中。在this fiddle中进行了测试,它可以正常工作:

Ext.create({
    renderTo: Ext.getBody(),

    xtype: 'numberfield',
    fieldLabel: 'Cena',
    name: 'Price',
    id: 'Price',
    allowNegative: false,
    width: 200,
    allowBlank: false,
    decimalPrecision:2,
    blankText: "Proszę podać cenę produktu"
});