Source
const submit_button = view.form.querySelector('.tfoot-buttons button[type="submit"]');
<?php declare(strict_types = 0);
/*
** Zabbix
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
/**
* @var CView $this
*/
?>
<script>
const view = {
form: null,
init({form_name, host_interfaces, host_is_discovered}) {
this.form = document.getElementById(form_name);
this.form.addEventListener('submit', this.events.submit);
host_edit.init({form_name, host_interfaces, host_is_discovered});
},
submit(button) {
this.setLoading(button);
const fields = host_edit.preprocessFormFields(getFormFields(this.form));
const curl = new Curl(this.form.getAttribute('action'), false);
fetch(curl.getUrl(), {
method: 'POST',
headers: {'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'},
body: urlEncodeData(fields)
})
.then((response) => response.json())
.then((response) => {
if ('error' in response) {
throw {error: response.error};
}
postMessageOk(response.success.title);
if ('messages' in response.success) {
postMessageDetails('success', response.success.messages);
}
const url = new Curl('zabbix.php', false);
url.setArgument('action', 'host.list');