I am looking to display a list of users when a user presses the @ button in a text box, similar to how WhatsApp shows group members in AngularJS. Here is my html code:
<input class="nostyle search-filter" ng-model="searchUsers" type="text" placeholder="Search" />
The controller's $scope.allGroupMembers
array holds all the users for the group. Thank you in advance.