ONOS-2149 - GUI -- App control button actions now take into account sort direction for refresh.

Change-Id: Ib9624943bfce032f1705728a3b1b5924cc124eee
diff --git a/web/gui/src/main/webapp/app/view/app/app.js b/web/gui/src/main/webapp/app/view/app/app.js
index 5bcb428..9552eda 100644
--- a/web/gui/src/main/webapp/app/view/app/app.js
+++ b/web/gui/src/main/webapp/app/view/app/app.js
@@ -82,7 +82,9 @@
                 $log.debug('Initiating ' + action + ' of ' + $scope.selId);
                 wss.sendEvent(APP_MGMENT_REQ, {
                     action: action,
-                    name: $scope.selId
+                    name: $scope.selId,
+                    sortCol: $scope.sortParams.sortCol,
+                    sortDir: $scope.sortParams.sortDir
                 });
             }
         };