<div ng-app>
    <table ng-init="characters = [{'name': 'Batman', 'status': 'super hero'},{...}];
            status = ['super hero','super mechant'] ;">
        <thead><tr><th>Name <input type="text" ng-model="search.name"></th>
            <th>Status
                <select ng-model="search.status" ng-options="s for s in status">
                    <option value="">--</option>
                </select></th></tr>
        </thead>
        <tr ng-repeat="character in characters | filter:search">
            <td>{{character.name}}</td><td>{{character.status}}</td>
        </tr>
    </table>
</div>
        
Names Status
{{character.name}}{{character.status}}