Stack Overflow is a community of 4.7 million programmers, just like you, helping each other.

Join them; it only takes a minute:

Sign up
Join the Stack Overflow community to:
  1. Ask programming questions
  2. Answer and help your peers
  3. Get recognized for your expertise

I am trying to search text on table using angular ..I am able to search text in table .But my search works when I press enter or “search button” .Example when I write “Active” it not show the result but when I press enter or press search button it show the output .can we do the like search like autocomplete .Example when I press “a’ it show all item which start from “a” .Then if user write “ac” then show “ac” value ..same like that .when user write “active “ it show rows which have “active” without using search button or enter

share|improve this question

This should be helpful. You can do this, if you look, using ng-repeat. Doing so, you essentially "repeatedly press enter" as text is put in.

For their example ng-repeat="movie in movies | filter:search | orderBy:'title':reverse">

Hope this helps!

share|improve this answer
    
could you please check on my code – user944513 Jul 3 '15 at 4:08
    
please remove your anser so that other will answer – user944513 Jul 3 '15 at 4:19
    
Sorry I didn't see this. I can post a reply with your code later this weekend. As long as you don't select my answer, your question will still have exposure! – Nico Jul 4 '15 at 6:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.