diff --git a/activemq-web-console/src/main/webapp/decorators/main.jsp b/activemq-web-console/src/main/webapp/decorators/main.jsp index 08bf528487..c3521ca9b0 100644 --- a/activemq-web-console/src/main/webapp/decorators/main.jsp +++ b/activemq-web-console/src/main/webapp/decorators/main.jsp @@ -31,12 +31,13 @@ + - +
diff --git a/activemq-web-console/src/main/webapp/js/standardista-table-sorting.js b/activemq-web-console/src/main/webapp/js/standardista-table-sorting.js index ee9b79f182..42b3775ab9 100644 --- a/activemq-web-console/src/main/webapp/js/standardista-table-sorting.js +++ b/activemq-web-console/src/main/webapp/js/standardista-table-sorting.js @@ -423,6 +423,10 @@ var standardistaTableSorting = { function standardistaTableSortingInit() { standardistaTableSorting.init(); + var e = {}; + var obj = document.getElementsByTagName("TH")[0].firstChild; // 0 points to the first column, use 3 if you want to sort on the 4th column + e.target = obj; + standardistaTableSorting.headingClicked(e); // will sort Ascending } addEvent(window, 'load', standardistaTableSortingInit) \ No newline at end of file