我的号码有问题,看起来像这样 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
答案 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"
});