2009-10-14 Miguel de Dios <miguel.dedios@artica.es>

* include/javascript/pandora_modules.js,
	godmode/agentes/module_manager_editor.php: add the type as parse in the
	module data in the local component, in the ajax (request in php and load
	in js).



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2022 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2009-10-14 19:47:35 +00:00
parent 41f0df04e3
commit 4423468211
3 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2009-10-14 Miguel de Dios <miguel.dedios@artica.es>
* include/javascript/pandora_modules.js,
godmode/agentes/module_manager_editor.php: add the type as parse in the
module data in the local component, in the ajax (request in php and load
in js).
2009-10-14 Miguel de Dios <miguel.dedios@artica.es>
* operation/agentes/status_monitor.php: fix, show only monitor in unknow

View File

@ -14,6 +14,7 @@
// GNU General Public License for more details.
require_once ('include/functions_network_components.php');
require_once ($config['homedir'].'/'.ENTERPRISE_DIR.'/include/functions_local_components.php');
if (is_ajax ()) {
$get_network_component = (bool) get_parameter ('get_network_component');
@ -61,6 +62,10 @@ if (is_ajax ()) {
$component = get_db_row ('tlocal_component', 'id', $id_component);
$typeName = parseLocalModuleExtractValue('module_type',$component['data']);
$component['type'] = get_db_value_sql('SELECT id_tipo FROM ttipo_modulo WHERE nombre LIKE "' . $typeName . '"');
echo json_encode ($component);
return;
}

View File

@ -74,7 +74,8 @@ function configure_modules_form () {
$("#textarea_description").attr ("value", html_entity_decode (data["description"]));
$("#textarea_configuration_data").attr ("value", configuration_data);
$("#component_loading").hide ();
$("#id_module_type").change ();
$("#id_module_type option[value="+data["type"]+"]").select (1);
},
"json"
);