mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-29 07:04:15 +00:00
add BackupModeSelector.js
This commit is contained in:
parent
55539b4ced
commit
5e64e67b0d
16
www/manager/form/BackupModeSelector.js
Normal file
16
www/manager/form/BackupModeSelector.js
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
Ext.define('PVE.form.BackupModeSelector', {
|
||||||
|
extend: 'PVE.form.KVComboBox',
|
||||||
|
alias: ['widget.pveBackupModeSelector'],
|
||||||
|
|
||||||
|
initComponent: function() {
|
||||||
|
var me = this;
|
||||||
|
|
||||||
|
me.data = [
|
||||||
|
['snapshot', 'Snapshot'],
|
||||||
|
['suspend', 'Suspend'],
|
||||||
|
['stop', 'Stop']
|
||||||
|
];
|
||||||
|
|
||||||
|
me.callParent();
|
||||||
|
}
|
||||||
|
});
|
Loading…
Reference in New Issue
Block a user