[POLICY-122] Policy GUI Fixes
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / controller / dictionaryGridController / attributeDictGridController.js
index d7b4c2b..c7b3174 100644 (file)
@@ -88,6 +88,14 @@ app.controller('attributeDictGridController', function ($scope, PolicyAppService
                                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,
@@ -160,7 +168,7 @@ app.controller('attributeDictGridController', function ($scope, PolicyAppService
                                var i;
                                if($scope.searchDatas.length > 0){
                                        for(i = 0 ; i < $scope.searchDatas.length; i++){
-                                               searchString += $scope.searchDatas[i].name + "\n";
+                                               searchString += $scope.searchDatas[i] + "\n";
                                        }       
                                }else{
                                        searchString += "No Policies is Using this Value"