我有一张表,由ng-Table生成。 我在哪里:
<td data-title="'Identity ID'" filter="{ identityId: 'text' }">application.identityId</td>
所以我可以使用桌面上的过滤器来过滤数据。
但是如何从代码中触发相同的过滤器呢? :
$scope.applicationsTable.filter("{ identityId: 'test123' }");
答案 0 :(得分:0)
在这里说出我的意思是example of plunker
FIY,我在示例中使用$ timeout 5秒,
$timeout(function(){
$scope.datas = $filter('filter')($scope.datas,{id:'24503'},true);
},5000)