New item to reports (Log)... (Added help tip to log item in reports)
This commit is contained in:
parent
47443f7af3
commit
3269473eee
|
@ -644,7 +644,12 @@ You can of course remove the warnings, that's why we include the source and do n
|
||||||
echo '<input type="hidden" id="type" name="type" value="' . $type . '" />';
|
echo '<input type="hidden" id="type" name="type" value="' . $type . '" />';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
<?php
|
||||||
|
$text = __('This type of report brings a lot of data loading, it is recommended to use it for scheduled reports and not for real-time view.');
|
||||||
|
echo '<a id="log_help_tip" style="visibility: hidden;" href="javascript:" class="tip" >' . html_print_image ("images/tip.png", true, array('title' => $text)) . '</a>';
|
||||||
|
?>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="row_name" style="" class="datos">
|
<tr id="row_name" style="" class="datos">
|
||||||
|
@ -2332,6 +2337,7 @@ function chooseType() {
|
||||||
$("#row_last_value").hide();
|
$("#row_last_value").hide();
|
||||||
$("#row_filter_search").hide();
|
$("#row_filter_search").hide();
|
||||||
$("#row_percentil").hide();
|
$("#row_percentil").hide();
|
||||||
|
$("#log_help_tip").css("visibility", "hidden");
|
||||||
|
|
||||||
// SLA list default state
|
// SLA list default state
|
||||||
$("#sla_list").hide();
|
$("#sla_list").hide();
|
||||||
|
@ -2365,6 +2371,7 @@ function chooseType() {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'event_report_log':
|
case 'event_report_log':
|
||||||
|
$("#log_help_tip").css("visibility", "visible");
|
||||||
$("#row_description").show();
|
$("#row_description").show();
|
||||||
$("#row_period").show();
|
$("#row_period").show();
|
||||||
$("#row_agent").show();
|
$("#row_agent").show();
|
||||||
|
|
Loading…
Reference in New Issue