Added names to the tables and td for sorting the events list via js

This commit is contained in:
Kyle Johnson 2013-05-25 11:55:52 -04:00
parent 60b67a1703
commit 1795633b71
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<h2>Events</h2> <h2>Events</h2>
<table> <table id="Events_Monitors">
<tr> <tr>
<th>Name</th> <th>Name</th>
<th>Total Events</th> <th>Total Events</th>
@ -12,7 +12,7 @@
<?php $count = 0; ?> <?php $count = 0; ?>
<?php foreach ($monitors as $monitor): ?> <?php foreach ($monitors as $monitor): ?>
<tr> <tr>
<td><?php echo $monitor['Monitor']['Name']; ?></td> <td id="Monitor_<?php echo $monitor['Monitor']['Id']; ?>"><?php echo $monitor['Monitor']['Name']; ?></td>
<td><?php echo count($monitor['Event']); ?></td> <td><?php echo count($monitor['Event']); ?></td>
<td><?php echo $eventsLastHour[$count][0]['count']; ?></td> <td><?php echo $eventsLastHour[$count][0]['count']; ?></td>
<td><?php echo $eventsLastDay[$count][0]['count']; ?></td> <td><?php echo $eventsLastDay[$count][0]['count']; ?></td>
@ -25,7 +25,7 @@
<?php unset($monitor); ?> <?php unset($monitor); ?>
</table> </table>
<?php echo $this->Paginator->numbers(); ?> <?php echo $this->Paginator->numbers(); ?>
<table> <table id="Events">
<tr> <tr>
<th>Event Name</th> <th>Event Name</th>
<th>Monitor Name</th> <th>Monitor Name</th>