Commit 2208b716ea7d0c3696a99c1d58655c225742f4b1
Merge branch 'listManagerSystemHighlight' of http://52.6.196.163/ADAM/AIAHTML5 into Develop-IPAD-MAC
Showing
1 changed file
with
3 additions
and
0 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -9434,6 +9434,9 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l |
9434 | 9434 | $rootScope.refreshTermListOnSystemSelection = function (bodysystemId) { |
9435 | 9435 | $rootScope.selectedBodySystemId = bodysystemId; |
9436 | 9436 | $rootScope.selectedBodySystemName = $('#bodySystems option[id="' + bodysystemId + '"]').val(); |
9437 | + $("#bodySystems").find("option").css({ "background-color": "#ffffff", "color": "#000000" }); | |
9438 | + $("#bodySystems").find("option[id=" + bodysystemId + "]").css({ "background-color": "#3399FF", "color": "#ffffff" }); | |
9439 | + | |
9437 | 9440 | $('#termList').empty(); |
9438 | 9441 | // $('#termList').innerHTML = ''; |
9439 | 9442 | ... | ... |