ui: add PreallocationSelector
Signed-off-by: Lorenz Stechauner <l.stechauner@proxmox.com> Reviewed-by: Fabian Ebner <f.ebner@proxmox.com> Tested-by: Fabian Ebner <f.ebner@proxmox.com>
This commit is contained in:
parent
d8da55382a
commit
418e9c13ae
@ -49,6 +49,7 @@ JSSRC= \
|
||||
form/PCISelector.js \
|
||||
form/PermPathSelector.js \
|
||||
form/PoolSelector.js \
|
||||
form/PreallocationSelector.js \
|
||||
form/PrivilegesSelector.js \
|
||||
form/QemuBiosSelector.js \
|
||||
form/SDNControllerSelector.js \
|
||||
|
11
www/manager6/form/PreallocationSelector.js
Normal file
11
www/manager6/form/PreallocationSelector.js
Normal file
@ -0,0 +1,11 @@
|
||||
Ext.define('PVE.form.preallocationSelector', {
|
||||
extend: 'Proxmox.form.KVComboBox',
|
||||
alias: ['widget.pvePreallocationSelector'],
|
||||
comboItems: [
|
||||
['__default__', Proxmox.Utils.defaultText],
|
||||
['off', 'Off'],
|
||||
['metadata', 'Metadata'],
|
||||
['falloc', 'Full (posix_fallocate)'],
|
||||
['full', 'Full'],
|
||||
],
|
||||
});
|
Loading…
Reference in New Issue
Block a user