Reputation: 179
How can I limit the value in numberfield to be positive only (0 not included) without using a validator.
Upvotes: 2
Views: 6983
Reputation: 643
Use this, it works for me.
new Ext.form.NumberField({
id: 'port',
fieldLabel: 'Port',
name: 'port',
allowNegative: false,
allowBlank: false,
minValue: 1,
anchor: '90%',
allowDecimals: false
})
Upvotes: 5