diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js index da8613a..3cab69c 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js @@ -1178,7 +1178,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo $scope.AAPinTermData = response.data.PinTermData.TermData; $rootScope.isLoading = false; $('#setting-spinner').css('visibility', 'hidden'); - + $scope.pinTermData = []; var primaryLexicon = $rootScope.lexiconLanguageArray[0].id; $scope.matchedLanguageTermData = new jinqJs() @@ -1188,34 +1188,41 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo for (var i = 0; i < $scope.matchedLanguageTermData.length; i++) { $scope.pinTermData.push({ "LanguageId": $scope.matchedLanguageTermData[i]._LanguageId, "TermNumber": $scope.matchedLanguageTermData[i]._TermNumber, "TermTxt": $scope.matchedLanguageTermData[i]._TermText }); - + // console.log($scope.pinTermData); } $scope.$watch('$scope.pinTermData', function (newValue, oldValue, scope) { if ($('#termlistfilter').html() != "") - $('#termlistfilter').empty() + $('#termList').empty(); + $('#termlistfilter').empty() if ($scope.pinTermData.length > 0) { $timeout(function () { console.log('pinTermData= ' + $scope.pinTermData.length); - for (var j = 0; j < $scope.pinTermData.length; j++) { var $el = $('
  • ' + $scope.pinTermData[j].TermTxt + '
  • ').appendTo('#termlistfilter') $compile($el)($scope); - + var $selectOptions = $('').appendTo("#termList") + $compile($selectOptions)($scope); } - + }, 500); } }) - + }, function (error) { // handle errors here console.log(' error: ' + error.statusText); } ) - + } - + $scope.$on('listManagerEvent', function (event, data) { + $("#viewName").empty(); + $("#viewName").append(""); + $rootScope.isLoading = false; + $('#spinner').css('visibility', 'hidden'); + + }); $scope.GetAnnotationBasedOnActualTermNo = function (actualTermNo) { @@ -1492,6 +1499,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo } } } + }]); function showSelectedSystemPins(event) {