proxmox-backup/www/SystemConfiguration.js

61 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-01-22 10:48:00 +00:00
Ext.define('PBS.SystemConfiguration', {
extend: 'Ext.tab.Panel',
xtype: 'pbsSystemConfiguration',
title: gettext('Configuration') + ': ' + gettext('System'),
2019-04-11 10:18:04 +00:00
border: true,
2019-01-22 10:48:00 +00:00
scrollable: true,
defaults: { border: false },
items: [
{
title: gettext('Network/Time'),
itemId: 'network',
xtype: 'panel',
layout: {
type: 'vbox',
align: 'stretch',
multi: true,
2019-01-22 10:48:00 +00:00
},
defaults: {
collapsible: true,
animCollapse: false,
margin: '10 10 0 10',
2019-01-22 10:48:00 +00:00
},
items: [
{
title: gettext('Time'),
xtype: 'proxmoxNodeTimeView',
nodename: 'localhost',
2019-01-22 10:48:00 +00:00
},
{
title: gettext('DNS'),
xtype: 'proxmoxNodeDNSView',
nodename: 'localhost',
2019-01-22 10:48:00 +00:00
},
{
flex: 1,
minHeight: 200,
title: gettext('Network Interfaces'),
xtype: 'proxmoxNodeNetworkView',
showApplyBtn: true,
types: ['bond', 'bridge', 'vlan'],
nodename: 'localhost',
},
],
},
2019-01-22 10:48:00 +00:00
],
initComponent: function() {
let me = this;
2019-01-22 10:48:00 +00:00
me.callParent();
let networktime = me.getComponent('network');
2019-01-22 10:48:00 +00:00
Ext.Array.forEach(networktime.query(), function(item) {
item.relayEvents(networktime, ['activate', 'deactivate', 'destroy']);
2019-01-22 10:48:00 +00:00
});
},
2019-01-22 10:48:00 +00:00
});