diff options
author | Hima Elisetty <hbindu@research.att.com> | 2018-04-18 16:45:41 -0400 |
---|---|---|
committer | Hima Elisetty <hbindu@research.att.com> | 2018-04-18 16:54:14 -0400 |
commit | 7b82955b50cd380cd6f79fe4506c84318733a5aa (patch) | |
tree | c2fe3bfdb66e3892c01b2264f73c38cb7059b3bd /ecomp-portal-FE-common | |
parent | 8be4c2995f415cceca73f6912ec2574765f26b23 (diff) |
Changes in Users page
Issue-ID: PORTAL-256
Fix on Users page modal
Change-Id: I44427259c0a6caa9623a884e5127e16de86cff8d
Signed-off-by: Hima Elisetty <hbindu@research.att.com>
Diffstat (limited to 'ecomp-portal-FE-common')
-rw-r--r-- | ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.directive.js | 18 | ||||
-rw-r--r-- | ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.tpl.html | 2 |
2 files changed, 19 insertions, 1 deletions
diff --git a/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.directive.js b/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.directive.js index c9e5d17e..8ce8ec28 100644 --- a/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.directive.js +++ b/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.directive.js @@ -126,6 +126,24 @@ angular.module('ecompApp') } return disp; }; + + scope.getIdTitle = function(){ + var disp = ''; + if(!scope.ngModel || !scope.ngModel.length) { + return disp; + } + scope.ngModel.forEach(function(item){ + if(item[scope.valueAttr]){ + disp+=item[scope.nameAttr] + ','; + } + }); + if(disp!==''){ + disp = disp.slice(0,disp.length-1); + }else{ + disp = scope.placeholder; + } + return disp+attrs.uniqueData; + }; } }; }); diff --git a/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.tpl.html b/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.tpl.html index 2db75903..a6a80524 100644 --- a/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.tpl.html +++ b/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.tpl.html @@ -37,7 +37,7 @@ --> <div id="app-multilple-select" class="multiple-select"> <div class="selectBox" - id="app-select-{{getTitle()}}" + id="app-select-{{getIdTitle()}}" ng-click="isDisabled || showCheckboxes()" title="{{getTitle()}}" ng-bind="getTitle()" |