tim_song
tim_song
$scope.oldOptions = $scope.options; $scope.$watch('input.searchFilter', function(newValue) { $scope.options=$filter('filter'($scope.oldOptions,$scope.getFilter($scope.input.searchFilter)); }) This may fix this problem.
I met the same problem, I found that the reason is that we init the multi-select plugin first and then using 'addOption' to add the options. But I am still...
I got the solution, after "addOption", use $('#xxx').multiSelect('refresh') can fix this problem.