diff --git a/pandora_console/include/ajax/map.ajax.php b/pandora_console/include/ajax/map.ajax.php index 3af0c3a1a2..26e2e0331f 100644 --- a/pandora_console/include/ajax/map.ajax.php +++ b/pandora_console/include/ajax/map.ajax.php @@ -275,22 +275,26 @@ if (is_ajax ()) { else if ($printEditNodeTable) { ?>
-
+
id = 'node_options'; $table->width = "100%"; - + + $table->head = array(); + $table->head['name'] = __('Nombre del nodo'); + $table->head['type'] = __('Tipo del nodo (Agente o Modulo)'); + $table->data = array(); - - $table->data[0][0] = __('TABLA DE EDICION'); - + $table->data[0][0] = __('Capo1'); + $table->data[0][1] = __('Capo2'); $table->data[1][0] = __('Capo1'); $table->data[1][1] = __('Capo2'); - $table->data[1][2] = __('Capo3'); - $table->data[1][3] = __('Capo4'); + $table->data[2][0] = __('Capo1'); + $table->data[2][1] = __('Capo2'); - html_print_table($table); + ui_toggle(html_print_table($table, true), __('Node options'), + __('Node options'), true); ?>