在numberfield extjs中只允许正值

时间:2014-03-27 05:03:58

标签: extjs

如何在不使用验证器的情况下将numberfield中的值限制为仅为正(0不包括在内)。

1 个答案:

答案 0 :(得分:2)

使用它,它适用于我。

new Ext.form.NumberField({
    id: 'port',
    fieldLabel: 'Port',
    name: 'port',
    allowNegative: false,
    allowBlank: false,
    minValue: 1,
    anchor: '90%',
    allowDecimals: false
})