gpt4 book ai didi

javascript - 如何在 angularjs 中实现类似 Excel 的过滤器?

转载 作者:技术小花猫 更新时间:2023-10-29 12:53:15 25 4
gpt4 key购买 nike

我需要使用 angulajs(v.1) 实现简单的 Excel Like Filer for table 我被卡住了请帮助我,我在下面添加了我的代码片段。我想在选中复选框并单击“确定”按钮后在表中显示过滤后的数据。我正在使用模型执行此操作但未获得解决方案,我该如何实现?

var myApp = angular.module('myApp', [])
myApp.filter('unique', function () {

return function (arr, field) {
var o = {}, i, l = arr.length, r = [];
for (i = 0; i < l; i += 1) {
o[arr[i][field]] = arr[i];
}
for (i in o) {
r.push(o[i]);
}
return r;
};
})

.controller('employeeController', function ($scope) {

var employees = [{
"Name": "Alfreds Futterkiste",
"City": "Berlin",
"Country": "Germany"
}, {
"Name": "Berglunds snabbköp",
"City": "Luleå",
"Country": "Sweden"
}, {
"Name": "Blauer See Delikatessen",
"City": "Mannheim",
"Country": "Germany"
}, {
"Name": "Blondel père et fils",
"City": "Strasbourg",
"Country": "France"
}, {
"Name": "Bólido Comidas preparadas",
"City": "Madrid",
"Country": "Spain"
}, {
"Name": "Bon app'",
"City": "Marseille",
"Country": "France"
}, {
"Name": "Bottom-Dollar Marketse",
"City": "Tsawassen",
"Country": "Canada"
}, {
"Name": "Cactus Comidas para llevar",
"City": "Buenos Aires",
"Country": "Argentina"
}, {
"Name": "Centro comercial Moctezuma",
"City": "México D.F.",
"Country": "France"
}, {
"Name": "Chop-suey Chinese",
"City": "Bern",
"Country": "Switzerland"
}, {
"Name": "Comércio Mineiro",
"City": "São Paulo",
"Country": "Canada"
}];
$scope.employees=employees;


})
.changeType {
background: #eee;
border-radius: 2px;
border: 1px solid #bbb;
color: #bbb;
font-size: 10px;
line-height: 9px;
padding: 4px;
float: right;
}

.changeType:before {
content: "\25BC ";
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script>
$(document).on('click', '#tblbatch .dropdown-menu', function (e) {
e.stopPropagation();
});
</script>
<body ng-app="myApp">
<div ng-controller="employeeController">
<div class="container" style="margin-top:40px;">
<div class="row">
{{error}}
<div class="col-md-6">
<table class="table table-bordered table-condensed" >
<thead>
<tr>
<th>Country
<div class="dropdown" style="float: right">
<button id="btnSearchBatch" class="changeType dropdown-toggle" ng-click="getAllBatchID()" type="button" data-toggle="dropdown"></button>
<div class="dropdown-menu prop" aria-labelledby="btnSearchBatch" style="width: 250px; padding: 15px;">
<div class="col-md-12" style="padding: 0;">
<table style="width:100%">
<tr>
<th style="text-align: left">
<form class="" role="form">
Filter by value
<input id="txtSearch" type="text" class="form-control input-sm" ng-model="batchSearch" placeholder="Search" />
<div class="row">
<div class="col-md-offset-6 col-md-6">
<div class="row">
<div class="col-md-6" style="padding: 5px 0 0 0"><a href="#" style="font-size:12px">Select All</a></div>
<div class="col-md-6" style="padding: 5px 15px 0 5px">
<a href="#" style="font-size:12px">Clear</a>
</div>
</div>
</div>
</div>
<div class="row" style="border-bottom: 1px dotted #ccc!important;">
<div class="col-md-12">
<div style="height: 150px; overflow-y: scroll; width: 100%;">
<ul style="list-style-type: none; padding: 0">
<li ng-repeat="emp in employees | unique: 'Country' | filter: batchSearch">
<input id="chkTableList" type="checkbox" ng-model="search[bat.BatchID]" />&nbsp;<label>{{emp.Country}}</label>
</li>

</ul>
</div>
</div>
</div>
<div class="row" style="margin-top: 8px;">
<div class="col-md-12" style="text-align: center">
<input id="btnOk" type="button" value="Ok" ng-click="FilterBatchData(BatchID)" class="btn btn-success btn-sm" style="background-color: #0f9d58; border-color: #18804e; color: #fff; padding: 3px; width: 60px;" />
<input id="btnCancel" type="button" value="Cancel" class="btn btn-default btn-sm" style="padding: 3px; width: 60px;" />
</div>
</div>
</form>
</th>
</tr>
</table>
</div>
</div>
</div></th>
<th>City</th>
<th>Name</th>
</tr>
</thead>
<tbody >
<tr ng-repeat="emp in employees">
<td>{{emp.City}}</td>
<td>{{emp.Name}}</td>
<td>{{emp.Country}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>

最佳答案

我们想要

  1. 显示带有复选框的唯一国家/地区名称列表以供选择。
  2. 通过 countrySearch 文本字段过滤国家/地区列表
  3. 通过 countrySearch 文本字段和选中的复选框过滤员工。

第 1 步:

首先,我们需要创建唯一国家/地区名称的映射。我们需要一个包含唯一国家名称的列表(用于迭代)和一个包含唯一国家名称的字典(以便在不循环的情况下轻松访问)。以下函数返回两者。

function categorize(arr, field) {
var o = {}, r = [], i, l = arr.length;
for (i = 0; i < l; i += 1) {
if(o[arr[i][field]])continue;
var _o = {name:arr[i][field], checked:true};
o[arr[i][field]] = _o;
r.push(_o);
}
return {list:r, dict:o};
};

第 2 步:

要通过 countrySearch 过滤国家/地区列表,请添加 countryFilter 并将 ng-model 绑定(bind)到复选框。

<li ng-repeat="country in CountryList.list | filter: countryFilter">
<input id="chk{{$index}}" type="checkbox" ng-model="country.checked" />&nbsp;
<label for="chk{{$index}}">{{country.name}}</label>
</li>
$scope.countryFilter = function (country) {
return $scope.countrySearch.length == 0 ? true : country.name.match(new RegExp($scope.countrySearch,'i'));
};

第 3 步:

要按 countrySearch 和选中的复选框过滤员工,请添加以下过滤器。

<tr ng-repeat="emp in employees | filter: rowFilter">
<td>{{emp.Country}}</td>
<td>{{emp.Name}}</td>
<td>{{emp.City}}</td>
</tr>
$scope.rowFilter = function (item) {
return $scope.Countries.dict[item.Country].checked && ($scope.countrySearch.length?item.Country.match(new RegExp($scope.countrySearch,'i')):true);
};

对于批量选择,将此方法添加到范围并调用 markAll(true) 来选择所有,markAll(false) 来选择无。

$scope.markAll=(b)=>{
$scope.Countries.list.forEach(function(x){x.checked=b;});
}

工作片段:

var myApp = angular.module('myApp', [])
.controller('employeeController', function ($scope) {
$scope.countrySearch = "";
$scope.employees = employees;
$scope.Countries = categorize(employees, 'Country');
$scope.countryFilter = function (country) {
return $scope.countrySearch.length ? country.name.match(new RegExp($scope.countrySearch,'i')):true;
};
$scope.rowFilter = function (item) {
return $scope.Countries.dict[item.Country].checked && ($scope.countrySearch.length?item.Country.match(new RegExp($scope.countrySearch,'i')):true);
};
$scope.markAll=(b)=>{
$scope.Countries.list.forEach(function(x){x.checked=b;});
}
})

function categorize(arr, field) {
var o = {}, r = [], i, l = arr.length;
for (i = 0; i < l; i += 1) {
if(o[arr[i][field]])continue;
var _o = {name:arr[i][field], checked:true};
o[arr[i][field]] = _o;
r.push(_o);
}
return {list:r, dict:o};
};

var employees = [{
"Name": "Alfreds Futterkiste",
"City": "Berlin",
"Country": "Germany"
}, {
"Name": "Berglunds snabbköp",
"City": "Luleå",
"Country": "Sweden"
}, {
"Name": "Blauer See Delikatessen",
"City": "Mannheim",
"Country": "Germany"
}, {
"Name": "Blondel père et fils",
"City": "Strasbourg",
"Country": "France"
}, {
"Name": "Bólido Comidas preparadas",
"City": "Madrid",
"Country": "Spain"
}, {
"Name": "Bon app'",
"City": "Marseille",
"Country": "France"
}, {
"Name": "Bottom-Dollar Marketse",
"City": "Tsawassen",
"Country": "Canada"
}, {
"Name": "Cactus Comidas para llevar",
"City": "Buenos Aires",
"Country": "Argentina"
}, {
"Name": "Centro comercial Moctezuma",
"City": "México D.F.",
"Country": "France"
}, {
"Name": "Chop-suey Chinese",
"City": "Bern",
"Country": "Switzerland"
}, {
"Name": "Comércio Mineiro",
"City": "São Paulo",
"Country": "Canada"
}];
.changeType {
background: #eee;
border-radius: 2px;
border: 1px solid #bbb;
color: #bbb;
font-size: 10px;
line-height: 9px;
padding: 4px;
float: right;
}

.changeType:before {
content: "\25BC ";
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script>
$(document).on('click', '#tblbatch .dropdown-menu', function(e) {
e.stopPropagation();
});
</script>

<body ng-app="myApp">
<div ng-controller="employeeController">
<div class="container" style="margin-top:40px;">
<div class="row">
{{error}}
<div class="col-md-6">
<table class="table table-bordered table-condensed">
<thead>
<tr>
<th>Country
<div class="dropdown" style="float: right">
<button id="btnSearchBatch" class="changeType dropdown-toggle" ng-click="getAllBatchID()" type="button" data-toggle="dropdown"></button>
<div class="dropdown-menu prop" aria-labelledby="btnSearchBatch" style="width: 250px; padding: 15px;">
<div class="col-md-12" style="padding: 0;">
<table style="width:100%">
<tr>
<th style="text-align: left">
<a href="#" class="pull-right" data-dismiss="modal" style="font-size:12px">Close(X)</a>
<form class="" role="form">
Filter by value
<input type="text" class="form-control input-sm" ng-model="countrySearch" placeholder="Search" />
<div class="row">
<div class="col-md-offset-6 col-md-6">
<div class="row">
<div class="col-md-6" style="padding: 5px 15px 0 5px"><a href="#" ng-click="markAll(true)" style="font-size:12px">Select All</a> | <a href="#" ng-click="markAll(false)" style="font-size:12px">Select None</a></div>
</div>
</div>
</div>
<div class="row" style="border-bottom: 1px dotted #ccc!important;">
<div class="col-md-12">
<div style="height: 150px; overflow-y: scroll; width: 100%;">
<ul style="list-style-type: none; padding: 0">
<li ng-repeat="country in Countries.list | filter: countryFilter">
<input id="chk{{$index}}" type="checkbox" ng-model="country.checked" />&nbsp;<label for="chk{{$index}}">{{country.name}}</label>
</li>

</ul>
</div>
</div>
</div>
</form>
</th>
</tr>
</table>
</div>
</div>
</div>
</th>
<th>Name</th>
<th>City</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="emp in employees | filter: rowFilter">
<td>{{emp.Country}}</td>
<td>{{emp.Name}}</td>
<td>{{emp.City}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>

稍微修改一下,我们可以将过滤器应用于多个列

var myApp = angular.module('myApp', [])
.controller('employeeController', function($scope) {
$scope.XLfilters = {
list: [],
dict: {}
};
$scope.markAll = function(field, b) {
$scope.XLfilters.dict[field].list.forEach((x) => {x.checked=b;});
}
$scope.clearAll = function(field) {
$scope.XLfilters.dict[field].searchText='';
$scope.XLfilters.dict[field].list.forEach((x) => {x.checked=true;});
}
$scope.itemFilter = function(field) {
var xfilter = $scope.XLfilters.dict[field];
if (xfilter.searchText.length == 0) return xfilter.list;
var rxp = new RegExp(xfilter.searchText, 'i');
return xfilter.list.filter(function(item) {
return item.name.match(rxp);
});
};
$scope.rowFilter = function(item) {
var visible = true;
for(var cat,i=0,l=$scope.XLfilters.list.length;i<l;i++){
cat = $scope.XLfilters.list[i];
if(!cat.dict[item[cat.field]].checked) return false;
if(cat.searchText.length){
if(!item[cat.field].match(new RegExp(cat.searchText,'i'))) return false;
}
}
return true;
};

function createXLfilter(arr, field) {
if ($scope.XLfilters.dict[field]) return;
var cat = categorize(arr, field);
cat.field=field;
cat.searchText = "";
$scope.XLfilters.dict[field] = cat;
$scope.XLfilters.list.push(cat);
}
$scope.employees = employees;
createXLfilter(employees, 'Country');
createXLfilter(employees, 'City');
})

function categorize(arr, field) {
var o = {},
r = [],
i, l = arr.length;
for (i = 0; i < l; i += 1) {
if (o[arr[i][field]]) continue;
var _o = {name:arr[i][field], checked:true};
o[arr[i][field]] = _o;
r.push(_o);
}
return {
list: r,
dict: o
};
};

var employees = [{
"Name": "Manirul Monir",
"City": "Sylhet",
"Country": "Bangladesh"
}, {
"Name": "Arup",
"City": "Sylhet",
"Country": "Bangladesh"
}, {
"Name": "Person 1",
"City": "Dhaka",
"Country": "Bangladesh"
}, {
"Name": "Person 2",
"City": "Dhaka",
"Country": "Bangladesh"
}, {
"Name": "Munim Munna",
"City": "Narshigdi",
"Country": "Bangladesh"
}, {
"Name": "Mahfuz Ahmed",
"City": "Narshigdi",
"Country": "Bangladesh"
}, {
"Name": "Tawkir Ahmed",
"City": "Gazipur",
"Country": "Bangladesh"
}, {
"Name": "Alfreds 2",
"City": "Berlin",
"Country": "Germany"
}, {
"Name": "Alfreds Futterkiste",
"City": "Berlin",
"Country": "Germany"
}, {
"Name": "Blauer See Delikatessen",
"City": "Mannheim",
"Country": "Germany"
}, {
"Name": "Blondel père et fils",
"City": "Strasbourg",
"Country": "France"
}, {
"Name": "Bon app'",
"City": "Marseille",
"Country": "France"
}, {
"Name": "Centro comercial Moctezuma",
"City": "México D.F.",
"Country": "France"
}];
.changeType {
background: #eee;
border-radius: 2px;
border: 1px solid #bbb;
color: #bbb;
font-size: 10px;
line-height: 9px;
padding: 4px;
float: right;
}

.changeType:before {
content: "\25BC ";
}

.options {
height: 150px;
overflow-y: scroll;
}

a.filterlink{
font-size: 12px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<div class="col-md-6" ng-app="myApp" ng-controller="employeeController">
<table class="table table-bordered table-condensed">
<thead>
<tr>
<th>Country
<div class="dropdown" style="float: right">
<button id="btnSearchBatch" class="changeType dropdown-toggle" type="button" data-toggle="dropdown"></button>
<div class="dropdown-menu prop" aria-labelledby="btnSearchBatch" style="width: 250px; padding: 15px;">
<div class="text-right">
<a href="#" class="filterlink" ng-click="clearAll('Country')">Clear All</a> | <a href="#" class="filterlink" data-dismiss="modal">Close(X)</a>
</div>
<form>
<input type="text" class="form-control input-sm" ng-model="XLfilters.dict['Country'].searchText" placeholder="Filter by Country" />
<div>
<a href="#" class="filterlink" ng-click="markAll('Country',true)">Select All</a> | <a href="#" class="filterlink" ng-click="markAll('Country',false)">Select None</a>
</div>
<div class="options">
<ul style="list-style-type: none; padding: 0">
<li ng-repeat="item in itemFilter('Country')">
<input id="countryOption{{$index}}" type="checkbox" ng-model="item.checked" />&nbsp;<label for="countryOption{{$index}}">{{item.name}}</label>
</li>
</ul>
</div>
</form>
</div>
</div>
</th>
<th>City
<div class="dropdown" style="float: right">
<button id="btnSearchBatch" class="changeType dropdown-toggle" type="button" data-toggle="dropdown"></button>
<div class="dropdown-menu prop" aria-labelledby="btnSearchBatch" style="width: 250px; padding: 15px;">
<div class="text-right">
<a href="#" class="filterlink" ng-click="clearAll('City')">Clear All</a> | <a href="#" class="filterlink" data-dismiss="modal">Close(X)</a>
</div>
<form>
<input type="text" class="form-control input-sm" ng-model="XLfilters.dict['City'].searchText" placeholder="Filter by City" />
<div>
<a href="#" class="filterlink" ng-click="markAll('City',true)">Select All</a> | <a href="#" class="filterlink" ng-click="markAll('City',false)">Select None</a>
</div>
<div class="options">
<ul style="list-style-type: none; padding: 0">
<li ng-repeat="item in itemFilter('City')">
<input id="cityOption{{$index}}" type="checkbox" ng-model="item.checked" />&nbsp;<label for="cityOption{{$index}}">{{item.name}}</label>
</li>
</ul>
</div>
</form>
</div>
</div>
</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="emp in employees | filter: rowFilter">
<td>{{emp.Country}}</td>
<td>{{emp.City}}</td>
<td>{{emp.Name}}</td>
</tr>
</tbody>
</table>
</div>

Angular 摘要循环优化多列过滤:

var myApp = angular.module('myApp', [])
.controller('employeeController', function($scope) {
$scope.XLfilters = { list: [], dict: {}, results: [] };
$scope.markAll = function(field, b) {
$scope.XLfilters.dict[field].list.forEach((x) => {x.checked=b;});
}
$scope.clearAll = function(field) {
$scope.XLfilters.dict[field].searchText='';
$scope.XLfilters.dict[field].list.forEach((x) => {x.checked=true;});
}
$scope.XLfiltrate = function() {
var i,j,k,selected,blocks,filter,option, data=$scope.XLfilters.all,filters=$scope.XLfilters.list;
$scope.XLfilters.results=[];
for (j=0; j<filters.length; j++) {
filter=filters[j];
filter.regex = filter.searchText.length?new RegExp(filter.searchText, 'i'):false;
for(k=0,selected=0;k<filter.list.length;k++){
if(!filter.list[k].checked)selected++;
filter.list[k].visible=false;
filter.list[k].match=filter.regex?filter.list[k].title.match(filter.regex):true;
}
filter.isActive=filter.searchText.length>0||selected>0;
}
for (i=0; i<data.length; i++){
blocks={allows:[],rejects:[],mismatch:false};
for (j=0; j<filters.length; j++) {
filter=filters[j]; option=filter.dict[data[i][filter.field]];
(option.checked?blocks.allows:blocks.rejects).push(option);
if(filter.regex && !option.match) blocks.mismatch=true;
}
if(blocks.rejects.length==1) blocks.rejects[0].visible=true;
else if(blocks.rejects.length==0&&!blocks.mismatch){
$scope.XLfilters.results.push(data[i]);
blocks.allows.forEach((x)=>{x.visible=true});
}
}
for (j=0; j<filters.length; j++) {
filter=filters[j];filter.options=[];
for(k=0;k<filter.list.length;k++){
if(filter.list[k].visible && filter.list[k].match) filter.options.push(filter.list[k]);
}
}
}
function createXLfilters(arr, fields) {
$scope.XLfilters.all = arr;
for (var j=0; j<fields.length; j++) $scope.XLfilters.list.push($scope.XLfilters.dict[fields[j]]={list:[],dict:{},field:fields[j],searchText:"",active:false,options:[]});
for (var i=0,z; i<arr.length; i++) for (j=0; j<fields.length; j++) {
z=$scope.XLfilters.dict[fields[j]];
z.dict[arr[i][fields[j]]] || z.list.push(z.dict[arr[i][fields[j]]]={title:arr[i][fields[j]],checked:true, visible:false,match:false});
}
}

createXLfilters(employees, ['Country','City']);
})

var employees = [{
"Name": "Manirul Monir",
"City": "Sylhet",
"Country": "Bangladesh"
}, {
"Name": "Arup",
"City": "Sylhet",
"Country": "Bangladesh"
}, {
"Name": "Person 1",
"City": "Dhaka",
"Country": "Bangladesh"
}, {
"Name": "Person 2",
"City": "Dhaka",
"Country": "Bangladesh"
}, {
"Name": "Munim Munna",
"City": "Narshingdi",
"Country": "Bangladesh"
}, {
"Name": "Mahfuz Ahmed",
"City": "Narshingdi",
"Country": "Bangladesh"
}, {
"Name": "Tawkir Ahmed",
"City": "Gazipur",
"Country": "Bangladesh"
}, {
"Name": "Alfreds 2",
"City": "Berlin",
"Country": "Germany"
}, {
"Name": "Alfreds Futterkiste",
"City": "Berlin",
"Country": "Germany"
}, {
"Name": "Blauer See Delikatessen",
"City": "Mannheim",
"Country": "Germany"
}, {
"Name": "Blondel père et fils",
"City": "Strasbourg",
"Country": "France"
}, {
"Name": "Bon app'",
"City": "Marseille",
"Country": "France"
}, {
"Name": "Centro comercial Moctezuma",
"City": "México D.F.",
"Country": "France"
}];
.filterdropdown{
background: #eee;
border: 1px solid #bbb;
color: #bbb;
border-radius: 2px;
font-size: 14px;
line-height: 14px;
}
.filterdropdown.active{
color: #005b9c;
}
a.filterlink{
font-size: 12px;
}
.options {
height: 150px;
overflow-y: scroll;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<div class="col-md-6" ng-app="myApp" ng-controller="employeeController">
<table class="table table-bordered table-condensed" data="{{XLfiltrate()}}">
<thead>
<tr>
<th>Country
<div class="dropdown" style="float: right">
<button class="dropdown-toggle filterdropdown" ng-class="{active:XLfilters.dict['Country'].isActive}" type="button" data-toggle="dropdown"><span class="glyphicon glyphicon-filter"></span></button>
<div class="dropdown-menu prop" aria-labelledby="btnSearchBatch" style="width: 250px; padding: 15px;">
<div class="text-right">
<a href="#" class="filterlink" ng-click="clearAll('Country')">Clear All</a> | <a href="#" class="filterlink" data-dismiss="modal">Close(X)</a>
</div>
<form>
<input type="text" class="form-control input-sm" ng-model="XLfilters.dict['Country'].searchText" placeholder="Filter by Country" />
<div>
<a href="#" class="filterlink" ng-click="markAll('Country',true)">Select All</a> | <a href="#" class="filterlink" ng-click="markAll('Country',false)">Select None</a>
</div>
<div class="options">
<ul style="list-style-type: none; padding: 0">
<li ng-repeat="item in XLfilters.dict['Country'].options">
<input id="countryOption{{$index}}" type="checkbox" ng-model="XLfilters.dict['Country'].dict[item.title].checked" />&nbsp;<label for="countryOption{{$index}}">{{item.title}}</label>
</li>
</ul>
</div>
</form>
</div>
</div>
</th>
<th>City
<div class="dropdown" style="float: right">
<button class="dropdown-toggle filterdropdown" ng-class="{active:XLfilters.dict['City'].isActive}" type="button" data-toggle="dropdown"><span class="glyphicon glyphicon-filter"></span></button>
<div class="dropdown-menu prop" aria-labelledby="btnSearchBatch" style="width: 250px; padding: 15px;">
<div class="text-right">
<a href="#" class="filterlink" ng-click="clearAll('City')">Clear All</a> | <a href="#" class="filterlink" data-dismiss="modal">Close(X)</a>
</div>
<form>
<input type="text" class="form-control input-sm" ng-model="XLfilters.dict['City'].searchText" placeholder="Filter by City" />
<div>
<a href="#" class="filterlink" ng-click="markAll('City',true)">Select All</a> | <a href="#" class="filterlink" ng-click="markAll('City',false)">Select None</a>
</div>
<div class="options">
<ul style="list-style-type: none; padding: 0">
<li ng-repeat="item in XLfilters.dict['City'].options">
<input id="cityOption{{$index}}" type="checkbox" ng-model="XLfilters.dict['City'].dict[item.title].checked" />&nbsp;<label for="cityOption{{$index}}">{{item.title}}</label>
</li>
</ul>
</div>
</form>
</div>
</div>
</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="emp in XLfilters.results">
<td>{{emp.Country}}</td>
<td>{{emp.City}}</td>
<td>{{emp.Name}}</td>
</tr>
</tbody>
</table>
</div>

关于javascript - 如何在 angularjs 中实现类似 Excel 的过滤器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49608761/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com