mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-05-19 16:11:00 +00:00
add integer field
This commit is contained in:
parent
b0d9b5d15d
commit
d44fdf59f9
1
Makefile
1
Makefile
@ -20,6 +20,7 @@ JSSRC= \
|
||||
data/DiffStore.js \
|
||||
data/ObjectStore.js \
|
||||
data/TimezoneStore.js \
|
||||
form/IntegerField.js \
|
||||
form/TextField.js \
|
||||
form/Checkbox.js \
|
||||
grid/ObjectGrid.js \
|
||||
|
8
form/IntegerField.js
Normal file
8
form/IntegerField.js
Normal file
@ -0,0 +1,8 @@
|
||||
Ext.define('Ext.form.field.Integer',{
|
||||
extend: 'Ext.form.field.Number',
|
||||
alias: 'widget.integerfield',
|
||||
|
||||
allowDecimals: false,
|
||||
allowExponential: false,
|
||||
step: 1
|
||||
});
|
Loading…
Reference in New Issue
Block a user