mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 16:24:54 +02:00
2011-10-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* godmode/agentes/module_manager_editor_network.php: Added Js in order to display combos correctly in IE. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5032 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
a34cb1fffe
commit
c98475ec99
@ -1,3 +1,8 @@
|
|||||||
|
2011-10-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
|
* godmode/agentes/module_manager_editor_network.php: Added Js in
|
||||||
|
order to display combos correctly in IE.
|
||||||
|
|
||||||
2011-09-29 Sergio Martin <sergio.martin@artica.es>
|
2011-09-29 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
* extensions/snmp_explorer.php
|
* extensions/snmp_explorer.php
|
||||||
|
@ -206,5 +206,26 @@ $(document).ready (function () {
|
|||||||
$("input[name=snmp_community]").attr("disabled", false);
|
$("input[name=snmp_community]").attr("disabled", false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$("#select_snmp_oid").click (
|
||||||
|
function () {
|
||||||
|
$(this).css ("width", "auto");
|
||||||
|
$(this).css ("min-width", "180px");
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#select_snmp_oid").blur (function () {
|
||||||
|
$(this).css ("width", "180px");
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#id_module_type").click (
|
||||||
|
function () {
|
||||||
|
$(this).css ("width", "auto");
|
||||||
|
$(this).css ("min-width", "180px");
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#id_module_type").blur (function () {
|
||||||
|
$(this).css ("width", "180px");
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user