mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-05-05 05:09:58 +00:00
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
Ext.define('Ext.form.field.Integer',{
|
|
extend: 'Ext.form.field.Number',
|
|
alias: 'widget.integerfield',
|
|
|
|
allowDecimals: false,
|
|
allowExponential: false,
|
|
step: 1
|
|
});
|