この単純なテーブルを持ち、複数のフィルタを使用して結果を並べ替える場合は、タイプ:上および下などのフィルタを使用します。selectを使用し、テーブルに結果を表示するマルチフィルタ
Select UIなどのライブラリを試しましたが、良い結果を得られませんでした。 助けてください。
<label>Type:</label>
<select ng-model="filterType" ng-options="item.type as item.type for item in samples | unique:'type'">
<option value="">Select</option>
</select>
<table class="table">
<tr>
<th>#</th>
<th>Name</th>
<th>Type</th>
<th>Status</th>
</tr>
<tr ng-repeat="item in samples | filter:filterType">
<td>{{item.id}}</td>
<td>{{item.name}}</td>
<td>{{item.type}}</td>
<td>{{item.status}}</td>
</tr>
</table>