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:
juanmanuelr 2011-10-03 08:43:15 +00:00
parent a34cb1fffe
commit c98475ec99
2 changed files with 26 additions and 0 deletions

View File

@ -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>
* extensions/snmp_explorer.php

View File

@ -206,5 +206,26 @@ $(document).ready (function () {
$("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>