Commit 3d02ba2eee3f7f5926bae3b97ffc422bdaad79ba
1 parent
2fa7777a
this is solution for the bug 25059
Showing
1 changed file
with
3 additions
and
0 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -9420,6 +9420,9 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l |
9420 | 9420 | $rootScope.refreshTermListOnSystemSelection = function (bodysystemId) { |
9421 | 9421 | $rootScope.selectedBodySystemId = bodysystemId; |
9422 | 9422 | $rootScope.selectedBodySystemName = $('#bodySystems option[id="' + bodysystemId + '"]').val(); |
9423 | + $("#bodySystems").find("option").css({ "background-color": "#ffffff", "color": "#000000" }); | |
9424 | + $("#bodySystems").find("option[id=" + bodysystemId + "]").css({ "background-color": "#3399FF", "color": "#ffffff" }); | |
9425 | + | |
9423 | 9426 | $('#termList').empty(); |
9424 | 9427 | // $('#termList').innerHTML = ''; |
9425 | 9428 | ... | ... |