2012-02-09 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* operation/events/events_list.php: Now toogle filter is not hide when pagination is used in thie view. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5527 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
75d27409ff
commit
ff39cfbf80
|
@ -1,3 +1,8 @@
|
|||
2012-02-09 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* operation/events/events_list.php: Now toogle filter is not hide
|
||||
when pagination is used in thie view.
|
||||
|
||||
2012-02-09 Vanessa Gil <vanessa.gil@artica.es>
|
||||
* godmode/agentes/module_manager_editor_common.php: Fixed behavior combo
|
||||
tag selected.
|
||||
|
|
|
@ -242,7 +242,7 @@ $url = "index.php?sec=eventos&sec2=operation/events/events&search=" .
|
|||
$ev_group . "&refr=" . $config["refr"] . "&id_agent=" .
|
||||
$id_agent . "&id_event=" . $id_event . "&pagination=" .
|
||||
$pagination . "&group_rep=" . $group_rep . "&event_view_hr=" .
|
||||
$event_view_hr . "&id_user_ack=" . $id_user_ack . "&tag=" . $tag . "&filter_only_alert=" . $filter_only_alert . "&offset=" . $offset;
|
||||
$event_view_hr . "&id_user_ack=" . $id_user_ack . "&tag=" . $tag . "&filter_only_alert=" . $filter_only_alert . "&offset=" . $offset . "&toogle_filter=no";
|
||||
|
||||
echo "<br>";
|
||||
//Link to toggle filter
|
||||
|
@ -393,6 +393,11 @@ if ($autorefresh_toogle == 'false'){
|
|||
html_print_input_hidden('toogle_filter', 'true');
|
||||
}
|
||||
else{
|
||||
// Keeps state with pagination
|
||||
if ($autorefresh_toogle == 'no'){
|
||||
html_print_input_hidden('toogle_filter', 'false');
|
||||
}
|
||||
|
||||
// If update button has been pushed then don't collapse filter
|
||||
if ($update_pressed == 'false'){
|
||||
html_print_input_hidden('toogle_filter', 'false');
|
||||
|
|
Loading…
Reference in New Issue