如何使用单个文本框根据任何列数据过滤行



我正在使用ng-table .

我尝试使用示例中给出的过滤器,但要过滤每一列,我需要单独的文本框。

但是我要实现的是,一个文本框可以根据任何列数据搜索任何行。

我怎样才能做到这一点?

就像jquery datatable搜索框一样。

这就是我的做法

目录

    <input type="text" ng-model="searchUser">
    <table ng-table="tableParams">
      <tr ng-repeat="user in $data">
        ...
      </tr>
    </table>

脚本

        var usersData = []; // initial data
        $scope.tableParams = new ngTableParams({
            page: 1,           
            count: 7
        }, {
        counts : [7,14,21,28],          
        getData: function($defer, params) {
            var searchedData = searchData();
            params.total(searchedData.length);
            $scope.users = searchedData.slice((params.page() - 1) * params.count(), params.page() * params.count());
            $defer.resolve($scope.users);                           
        },
        $scope: { $data: {} }
    });

$scope.$watch("searchUser", function () {
    $scope.tableParams.reload();
});
var searchData = function(){
    if($scope.searchUser)
       return $filter('filter')(usersData,$scope.searchUser);
    return usersData;
}

剩余的默认ngtable配置。

基于原始问题,如果您最初加载所有数据,那么这很容易。 我使用此 http://ng-table.com/#/filtering/demo-api 作为参考,然后使用 ng-change 添加预键入过滤。

视图:

<form name="awesomeForm" novalidate>
<div class="input-group">
    <input type="text" class="form-control" placeholder="Search term" name="searchTerm" ng-model="globalSearchTerm" ng-change="applyGlobalSearch(globalSearchTerm)" required />
    <span class="input-group-btn">
        <button class="btn btn-default" type="submit" >
            <span class="glyphicon glyphicon-search"></span>
        </button>
    </span>
</div>
</form>

在控制器中(加载表中的数据后):

$scope.applyGlobalSearch = function(term) {
    $scope.tableParams.filter({ $: term });
}

相关内容

  • 没有找到相关文章

最新更新