From 3d02ba2eee3f7f5926bae3b97ffc422bdaad79ba Mon Sep 17 00:00:00 2001 From: Mukul Date: Fri, 5 Jan 2018 12:07:06 +0530 Subject: [PATCH] this is solution for the bug 25059 --- 400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js | 3 +++ 1 file changed, 3 insertions(+), 0 deletions(-) diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js index 57f2da5..8f245b1 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js @@ -9420,6 +9420,9 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l $rootScope.refreshTermListOnSystemSelection = function (bodysystemId) { $rootScope.selectedBodySystemId = bodysystemId; $rootScope.selectedBodySystemName = $('#bodySystems option[id="' + bodysystemId + '"]').val(); + $("#bodySystems").find("option").css({ "background-color": "#ffffff", "color": "#000000" }); + $("#bodySystems").find("option[id=" + bodysystemId + "]").css({ "background-color": "#3399FF", "color": "#ffffff" }); + $('#termList').empty(); // $('#termList').innerHTML = ''; -- libgit2 0.21.4