Uploaded image for project: 'ZABBIX BUGS AND ISSUES'
  1. ZABBIX BUGS AND ISSUES
  2. ZBX-5273

Frontend does not allow to edit hosts

XMLWordPrintable

      This is entirely a client-side problem. When you attempt to edit an existing host, the "Unknown host interface type." is thrown. This is due to getDomIdForRowInsert function (include/views/js/configuration.host.edit.js.php) being passed an integer instead of a string (this happens on initial form load only when editing existing host, because interface table is populated with numbers, and not their string representations), which leads to switch-based compare to a string representation of host interface numeric type (a result of getHostInterfaceNumericType function call).
      A quick fix is forcing hostInterfaceType to be a string (I just concatenate it with an empty string): switch (hostInterfaceType + '').
      A proper solution would be either populating the initial object with string representations of numeric interface types (seems easy) or moving to numeric representations everywhere (seems unnecessarily hard and prone to errors).

            Unassigned Unassigned
            onyxmaster Aristarkh Zagorodnikov
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: