diff --git a/src/main/webapp/scripts/directives/distributedCallFlow.js b/src/main/webapp/scripts/directives/distributedCallFlow.js index 2bdf30c65..19cc5c9a9 100644 --- a/src/main/webapp/scripts/directives/distributedCallFlow.js +++ b/src/main/webapp/scripts/directives/distributedCallFlow.js @@ -77,8 +77,8 @@ pinpointApp.directive('distributedCallFlow', [ '$filter', {id: "method", name: "Method", field: "method", width: 400, formatter: treeFormatter}, {id: "argument", name: "Argument", field: "argument", width: 300}, {id: "exec-time", name: "Exec Time", field: "execTime", width: 90, formatter: execTimeFormatter}, - {id: "gap-ms", name: "Gap(ms)", field: "gapMs", width: 50, cssClass: "right-align", formatter: numberFormatter}, - {id: "time-ms", name: "Time(ms)", field: "timeMs", width: 50, cssClass: "right-align", formatter: numberFormatter}, + {id: "gap-ms", name: "Gap(ms)", field: "gapMs", width: 50, cssClass: "right-align"}, + {id: "time-ms", name: "Time(ms)", field: "timeMs", width: 50, cssClass: "right-align"}, {id: "time-per", name: "Time(%)", field: "timePer", width: 100, formatter: Slick.Formatters.PercentCompleteBar}, {id: "class", name: "Class", field: "class", width: 120}, {id: "api-type", name: "Api Type", field: "apiType", width: 90}, @@ -126,18 +126,18 @@ pinpointApp.directive('distributedCallFlow', [ '$filter', dataView.beginUpdate(); dataView.setItems(window.callStacks); dataView.setFilter(treeFilter); - dataView.getItemMetadata = function (row) { - var item = dataView.getItemByIdx(row); - if (!item.execTime) { - return { - "columns": { - 2: { - "colspan": "*" - } - } - }; - } - }; +// dataView.getItemMetadata = function (row) { +// var item = dataView.getItemByIdx(row); +// if (!item.execTime) { +// return { +// "columns": { +// 2: { +// "colspan": "*" +// } +// } +// }; +// } +// }; dataView.endUpdate(); grid = new Slick.Grid(element.get(0), dataView, columns, options); diff --git a/src/main/webapp/styles/distributedCallFlow.css b/src/main/webapp/styles/distributedCallFlow.css index bc0336eb4..79ba95fe8 100644 --- a/src/main/webapp/styles/distributedCallFlow.css +++ b/src/main/webapp/styles/distributedCallFlow.css @@ -5,6 +5,7 @@ } .distributed-call-flow .slick-cell { font-family: consolas; + border-bottom: 0; } .distributed-call-flow div { -webkit-box-sizing: content-box; @@ -100,7 +101,7 @@ } .slick-row.odd { - background: #fafafa; + /*background: #fafafa;*/ } .slick-row.ui-state-active {