Resolved the Policy GUI Javascript issues
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / controller / dictionaryGridController / BRMSControllerDictGridController.js
index c8eca84..c80f53d 100644 (file)
@@ -1,6 +1,6 @@
 /*-
  * ============LICENSE_START=======================================================
- * ECOMP Policy Engine
+ * ONAP Policy Engine
  * ================================================================================
  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
@@ -63,6 +63,7 @@ appDS2.controller('brmsControllerDictGridController', function ($scope, PolicyAp
                        },
                        { field: 'controllerName', displayName : 'Controller Name', sort: { direction: 'asc', priority: 0 }},
                        { field: 'description'},
+                       { field: 'controller' , visible : false},
                        {field: 'userCreatedBy.userName', displayName : 'Created By'},
                        {field: 'createdDate',type: 'date', cellFilter: 'date:\'yyyy-MM-dd\'' },
                        {field: 'userModifiedBy.userName', displayName : 'Modified By'},
@@ -81,6 +82,14 @@ appDS2.controller('brmsControllerDictGridController', function ($scope, PolicyAp
                                docDefinition.styles.footerStyle = { fontSize: 10, bold: true };
                                return docDefinition;
                        },
+                       exporterFieldCallback: function(grid, row, col, input) {
+                               if( col.name == 'createdDate' || col.name == 'modifiedDate') {
+                                       var date = new Date(input);
+                                       return date.toString("yyyy-MM-dd HH:MM:ss a");
+                               } else {
+                                       return input;
+                               }
+                       },
                        exporterPdfOrientation: 'portrait',
                        exporterPdfPageSize: 'LETTER',
                        exporterPdfMaxGridWidth: 500,