OLD | NEW |
1 <!-- ================= Events view =================== --> | 1 <!-- ================= Events view =================== --> |
2 | 2 |
3 <!-- Filter Box: This the top bar which contains the search box. --> | 3 <!-- Filter Box: This the top bar which contains the search box. --> |
4 <div id=events-view-filter-box> | 4 <div id=events-view-filter-box> |
5 <table width=100%> | 5 <table width=100%> |
6 <tr> | 6 <tr> |
7 <td width=1%>Filter:</td> | 7 <td width=1%>Filter:</td> |
8 <td width=98%><input type="search" incremental id=events-view-filter-input
/></td> | 8 <td width=98%><input type="search" incremental id=events-view-filter-input
></td> |
9 <td width=1% id=events-view-filter-count>(1 of 34)</td> | 9 <td width=1% id=events-view-filter-count>(1 of 34)</td> |
10 </tr> | 10 </tr> |
11 </table> | 11 </table> |
12 </div> | 12 </div> |
13 <!-- Events Box: This the panel on the left which lists the sources --> | 13 <!-- Events Box: This the panel on the left which lists the sources --> |
14 <div id=events-view-source-list> | 14 <div id=events-view-source-list> |
15 <table id=events-view-source-list-table cellspacing=0 cellpadding=0 width=100%
> | 15 <table id=events-view-source-list-table cellspacing=0 cellpadding=0 width=100%
> |
16 <thead> | 16 <thead> |
17 <tr> | 17 <tr> |
18 <td style='border-left:0'><input type=checkbox id=events-view-select-all
/></td> | 18 <td style='border-left:0'><input type=checkbox id=events-view-select-all
></td> |
19 <td id=events-view-sort-by-id>ID</td> | 19 <td id=events-view-sort-by-id>ID</td> |
20 <td id=events-view-sort-by-source>Source</td> | 20 <td id=events-view-sort-by-source>Source</td> |
21 <td id=events-view-sort-by-description width=99%>Description</td> | 21 <td id=events-view-sort-by-description width=99%>Description</td> |
22 </tr> | 22 </tr> |
23 </thead> | 23 </thead> |
24 <!-- Events table body: This is where request rows go into --> | 24 <!-- Events table body: This is where request rows go into --> |
25 <tbody id=events-view-source-list-tbody></tbody> | 25 <tbody id=events-view-source-list-tbody></tbody> |
26 </table> | 26 </table> |
27 </div> | 27 </div> |
28 <!-- Splitter Box: This is a handle to resize the vertical divider --> | 28 <!-- Splitter Box: This is a handle to resize the vertical divider --> |
29 <div id=events-view-splitter-box class=vertical-splitter></div> | 29 <div id=events-view-splitter-box class=vertical-splitter></div> |
30 <!-- Details box: This is the panel on the right which shows information --> | 30 <!-- Details box: This is the panel on the right which shows information --> |
31 <div id=events-view-details-log-box class="event-log content-box"></div> | 31 <div id=events-view-details-log-box class="event-log content-box"></div> |
OLD | NEW |