pmg-gui/js/MailProxyPorts.js
Stoiko Ivanov 573a6e8b71 add onlineHelp properties to all edit windows
Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
2018-10-03 14:32:24 +02:00

58 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);
}
});