mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-30 17:24:16 +02:00
Fix that navigating in the service grid opens the grid in a new column
refs #6180
This commit is contained in:
parent
933172f250
commit
8e1a6a5b83
@ -28,7 +28,7 @@ $nextXAxisPage = $currentXAxisPage < $totalXAxisPages ? $currentXAxisPage + 1 :
|
|||||||
<td> </td>
|
<td> </td>
|
||||||
<td>
|
<td>
|
||||||
<?php if ($prevYAxisPage): ?>
|
<?php if ($prevYAxisPage): ?>
|
||||||
<a href="<?= Url::fromRequest()->overwriteParams(array(
|
<a target="_self" href="<?= Url::fromRequest()->overwriteParams(array(
|
||||||
'page' => $currentXAxisPage . ',' . $prevYAxisPage
|
'page' => $currentXAxisPage . ',' . $prevYAxisPage
|
||||||
))->getAbsoluteUrl(); ?>" title="<?= sprintf(
|
))->getAbsoluteUrl(); ?>" title="<?= sprintf(
|
||||||
$fromTo,
|
$fromTo,
|
||||||
@ -46,7 +46,7 @@ $nextXAxisPage = $currentXAxisPage < $totalXAxisPages ? $currentXAxisPage + 1 :
|
|||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<?php if ($prevXAxisPage): ?>
|
<?php if ($prevXAxisPage): ?>
|
||||||
<a href="<?= Url::fromRequest()->overwriteParams(array(
|
<a target="_self" href="<?= Url::fromRequest()->overwriteParams(array(
|
||||||
'page' => $prevXAxisPage . ',' . $currentYAxisPage
|
'page' => $prevXAxisPage . ',' . $currentYAxisPage
|
||||||
))->getAbsoluteUrl(); ?>" title="<?= sprintf(
|
))->getAbsoluteUrl(); ?>" title="<?= sprintf(
|
||||||
$fromTo,
|
$fromTo,
|
||||||
@ -62,7 +62,7 @@ $nextXAxisPage = $currentXAxisPage < $totalXAxisPages ? $currentXAxisPage + 1 :
|
|||||||
<td> </td>
|
<td> </td>
|
||||||
<td>
|
<td>
|
||||||
<?php if ($nextXAxisPage): ?>
|
<?php if ($nextXAxisPage): ?>
|
||||||
<a href="<?= Url::fromRequest()->overwriteParams(array(
|
<a target="_self" href="<?= Url::fromRequest()->overwriteParams(array(
|
||||||
'page' => $nextXAxisPage . ',' . $currentYAxisPage
|
'page' => $nextXAxisPage . ',' . $currentYAxisPage
|
||||||
))->getAbsoluteUrl(); ?>" title="<?= sprintf(
|
))->getAbsoluteUrl(); ?>" title="<?= sprintf(
|
||||||
$fromTo,
|
$fromTo,
|
||||||
@ -80,7 +80,7 @@ $nextXAxisPage = $currentXAxisPage < $totalXAxisPages ? $currentXAxisPage + 1 :
|
|||||||
<td> </td>
|
<td> </td>
|
||||||
<td>
|
<td>
|
||||||
<?php if ($nextYAxisPage): ?>
|
<?php if ($nextYAxisPage): ?>
|
||||||
<a href="<?= Url::fromRequest()->overwriteParams(array(
|
<a target="_self" href="<?= Url::fromRequest()->overwriteParams(array(
|
||||||
'page' => $currentXAxisPage . ',' . $nextYAxisPage
|
'page' => $currentXAxisPage . ',' . $nextYAxisPage
|
||||||
))->getAbsoluteUrl(); ?>" title="<?= sprintf(
|
))->getAbsoluteUrl(); ?>" title="<?= sprintf(
|
||||||
$fromTo,
|
$fromTo,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user