AngularJSで以下のコードを実行できるかどうかは疑問です。目標はすべてのids> =検索IDで配列をフィルタリングすることです。検索をインラインで行うことはできますか、それともjavascriptでカスタムフィルタとして行う必要がありますか?AngularJSで配列をフィルタリングする
<div style="margin-top:5px;margin-left:30px;">
<div>
<div>ID</div>
<span class="glyphicon glyphicon-search"></span>
<input type="text" ng-model="listFoodItems.searchid" />
</div>
<table class="table table-responsive">
<thead>
<tr>
<th>ID</th>
<th>Description</th>
<th>Discount</th>
</tr>
</thead>
<tfoot></tfoot>
<tbody>
<tr ng-repeat="row in listFoodItems.fullitemdescs | filter: EntryId >= searchid">
<td>{{row.EntryId}}</td>
<td>{{row.ItemDesc}}</td>
<td>{{row.ItemDisc}}</td>
</tr>
</tbody>
</table>
</div>
あなたはDIV(NG-IF = "行可能性があります。 –