pmg-gui/js/MailProxyPorts.js
Thomas Lamprecht c87d46fbe8 tree wide: eslint --fix
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2020-10-23 13:17:15 +02:00

62 lines
1.1 KiB
JavaScript

Ext.define('PMG.MailProxyPorts', {
extend: 'Proxmox.grid.ObjectGrid',
alias: ['widget.pmgMailProxyPorts'],
url: '/api2/json/config/mail',
monStoreErrors: true,
editorConfig: {
url: '/api2/extjs/config/mail',
onlineHelp: 'pmgconfig_mailproxy_ports',
},
interval: 5000,
cwidth1: 200,
controller: {
xclass: 'Ext.app.ViewController',
onEdit: function() {
this.getView().run_editor();
},
},
listeners: {
itemdblclick: 'onEdit',
},
tbar: [
{
text: gettext('Edit'),
xtype: 'proxmoxButton',
disabled: true,
handler: 'onEdit',
},
],
initComponent: function() {
var me = this;
me.add_integer_row('ext_port', gettext('External SMTP Port'),
{
defaultValue: 25, deleteEmpty: true,
minValue: 1, maxValue: 65535,
});
me.add_integer_row('int_port', gettext('Internal SMTP Port'),
{
defaultValue: 26, deleteEmpty: true,
minValue: 1, maxValue: 65535,
});
me.callParent();
me.on('activate', me.rstore.startUpdate);
me.on('destroy', me.rstore.stopUpdate);
me.on('deactivate', me.rstore.stopUpdate);
},
});