1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
/*
** Zabbix
** Copyright (C) 2001-2019 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.
**/
function organizeInterfaces(interfaceType) {
var selectedInterfaceId = +jQuery('#selectedInterfaceId').val();
var matchingInterfaces = jQuery('#interfaceid option[data-interfacetype="' + interfaceType + '"]');
var selectedInterfaceOption;
if (selectedInterfaceId) {
selectedInterfaceOption = jQuery('#interfaceid option[value="' + selectedInterfaceId + '"]');
}
if (jQuery('#visible_interface').data('multipleInterfaceTypes') && !jQuery('#visible_type').is(':checked')) {
jQuery('#interface_not_defined').html(t('To set a host interface select a single item type for all items')).show();
jQuery('#interfaceid').hide();
}
else {
// a specific interface is required
if (interfaceType > 0) {
// we have some matching interfaces available
if (matchingInterfaces.length) {
jQuery('#interfaceid option')
.prop('selected', false)
.prop('disabled', true)
.filter('[value="0"]').remove();
matchingInterfaces.prop('disabled', false);
// select the interface by interfaceid, if it's available
if (selectedInterfaceId && !selectedInterfaceOption.prop('disabled')) {
jQuery('#interfaceid').val(selectedInterfaceId);
}
// if no interfaceid is given, select the first suitable interface
else {
matchingInterfaces.first().prop('selected', true);
}
jQuery('#interfaceid').show();
jQuery('#interface_not_defined').hide();
}
// no matching interfaces available
else {
// hide combobox and display warning text
if (!jQuery('#interfaceid option[value="0"]').length) {
jQuery('#interfaceid').prepend('<option value="0"></option>');
}
jQuery('#interfaceid').hide().val(0);
jQuery('#interface_not_defined').html(t('No interface found')).show();
}
}
// any interface or no interface
else {
// no interface required
if (interfaceType === null) {
if (!jQuery('#interfaceid option[value="0"]').length) {
jQuery('#interfaceid').prepend('<option value="0"></option>');
}
jQuery('#interfaceid option')
.prop('disabled', true)
.filter('[value="0"]').prop('disabled', false);
jQuery('#interfaceid').val(0);
}
// any interface
else {
jQuery('#interfaceid option')
.prop('disabled', false)
.filter('[value="0"]').remove();
if (selectedInterfaceId) {
selectedInterfaceOption.prop('selected', true);
}
}
jQuery('#interfaceid').show();
jQuery('#interface_not_defined').hide();
}
}
}
|