mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-06-05 03:26:23 +00:00

lots of churn and changes but will allow to enforce linting again in the build system. Also switch over from var to let. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
55 lines
1.1 KiB
JavaScript
55 lines
1.1 KiB
JavaScript
Ext.define('Proxmox.node.DNSEdit', {
|
|
extend: 'Proxmox.window.Edit',
|
|
alias: ['widget.proxmoxNodeDNSEdit'],
|
|
|
|
initComponent: function() {
|
|
let me = this;
|
|
|
|
if (!me.nodename) {
|
|
throw "no node name specified";
|
|
}
|
|
|
|
me.items = [
|
|
{
|
|
xtype: 'textfield',
|
|
fieldLabel: gettext('Search domain'),
|
|
name: 'search',
|
|
allowBlank: false,
|
|
},
|
|
{
|
|
xtype: 'proxmoxtextfield',
|
|
fieldLabel: gettext('DNS server') + " 1",
|
|
vtype: 'IP64Address',
|
|
skipEmptyText: true,
|
|
name: 'dns1',
|
|
},
|
|
{
|
|
xtype: 'proxmoxtextfield',
|
|
fieldLabel: gettext('DNS server') + " 2",
|
|
vtype: 'IP64Address',
|
|
skipEmptyText: true,
|
|
name: 'dns2',
|
|
},
|
|
{
|
|
xtype: 'proxmoxtextfield',
|
|
fieldLabel: gettext('DNS server') + " 3",
|
|
vtype: 'IP64Address',
|
|
skipEmptyText: true,
|
|
name: 'dns3',
|
|
},
|
|
];
|
|
|
|
Ext.applyIf(me, {
|
|
subject: gettext('DNS'),
|
|
url: "/api2/extjs/nodes/" + me.nodename + "/dns",
|
|
fieldDefaults: {
|
|
labelWidth: 120,
|
|
},
|
|
});
|
|
|
|
me.callParent();
|
|
|
|
me.load();
|
|
},
|
|
});
|