Oleksandr

Results 2 comments of Oleksandr

Possible solution -> create own directive like so; ``` app.directive('typeaheadAsSelect', [function() { return { restrict: 'A', require: ['ngModel'], link: function($scope, $element, attrs, ctrls){ $element.bind('focus', function(){ $scope.prevValue = ctrls[0].$viewValue; ctrls[0].$setViewValue(""); });...

Had exact same issue. Frontend runs on path `"/"`. Backend runs on path `"/myApp"`. Backend was setting cookie path as `"/myApp"`. Changing it to `"/"` fixed my problem.