diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
index 4fc6d29..ca963ec 100644
--- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
+++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
@@ -8455,7 +8455,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l
angular.forEach(systemList, function (value, key) {
systemListHtml = systemListHtml + '
' + value._Name + ''
- })
+ })
systemListHtml = systemListHtml + '';
$('#bodySystem').append(systemListHtml);
@@ -8856,6 +8856,14 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l
$compile($e2)($scope);
document.getElementById("termlistfilter").style.display = "block";
$timeout(function () {
+ $("#backdrop > #searchListDiv > #termlistfilter > li").each(function (key, value) {
+ if ($(this).find("a").html() == document.getElementById("typedTermName").value) {
+ $("#termlistfilter li a").css({ "background-color": "#ffffff", "color": "#000000" });
+ $(this).find("a").css({ "background-color": "#3399FF", "color": "#ffffff" });
+ }
+ });
+ }, 100);
+ $timeout(function () {
$rootScope.searchListArray = [];
$("#backdrop > #searchListDiv > #termlistfilter > li").each(function (key, value) {
$rootScope.searchListArray.push({ "name": $(this).find("a").html(), "id": $(this).find("a").attr("id") });