add BackupModeSelector.js

This commit is contained in:
Dietmar Maurer 2011-10-28 08:02:55 +02:00
parent 55539b4ced
commit 5e64e67b0d

View 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();
}
});