[유치수] [NOBTS] 정렬 기능 보강.

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@1247 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Chisu Yu
2013-02-21 09:44:19 +00:00
parent 660a872748
commit df00b3d6b4
4 changed files with 15 additions and 13 deletions
@@ -232,7 +232,7 @@
</td>
<td class="arguments">${record.arguments}</td>
<td class="time">
<td class="time" sorttable_customkey="${record.elapsed}">
<c:if test="${record.method}">
<fmt:formatNumber type="number" value="${record.elapsed}"/>
</c:if>
@@ -393,7 +393,9 @@ d3.chart.scatter._renderer = function(){
html.push(i + 1);
html.push("</td>");
html.push("<td>");
html.push("<td sorttable_customkey='");
html.push(data[i].startTime);
html.push("'>");
html.push(new Date(data[i].startTime).format("HH:MM:ss l"));
html.push("</td>");
@@ -13,20 +13,20 @@ function showTransactionList(transactions) {
html.push(transactions[i].name);
html.push("</div></td>");
html.push("<td class='calls'>");
html.push(transactions[i].calls);
html.push("<td class='calls' sorttable_customkey='" + transactions[i].calls + "'>");
html.push(formatNumber(transactions[i].calls));
html.push("</td>");
html.push("<td class='time'>");
html.push(transactions[i].avgTime);
html.push("<td class='time' sorttable_customkey='" + transactions[i].avgTime + "'>");
html.push(formatNumber(transactions[i].avgTime));
html.push("</td>");
html.push("<td class='time'>");
html.push(transactions[i].minTime);
html.push("<td class='time' sorttable_customkey='" + transactions[i].minTime + "'>");
html.push(formatNumber(transactions[i].minTime));
html.push("</td>");
html.push("<td class='time'>");
html.push(transactions[i].maxTime);
html.push("<td class='time' sorttable_customkey='" + transactions[i].maxTime + "'>");
html.push(formatNumber(transactions[i].maxTime));
html.push("</td>");
html.push("</tr>");
+3 -3
View File
@@ -111,10 +111,10 @@
<table id="selectedBusinessTransactionsDetail" class="table table-bordered table-hover sortable">
<thead>
<tr>
<th>#</th>
<th>Time</th>
<th class="sorttable_numeric">#</th>
<th class="sorttable_numeric">Time</th>
<th>TraceId</th>
<th>Res. Time (ms)</th>
<th class="sorttable_numeric">Res. Time (ms)</th>
<th>Exception</th>
<th>Application</th>
<th>AgentId</th>