- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
感谢您花时间阅读我的问题。我目前正在开发 AngularJS UI-Grid,我已经为“名字”列实现了多选下拉菜单。然而,我在理解如何实现逻辑时遇到了一些问题,就像我对“男性”和“女性”列所做的那样,因为这是多选的。如果有人可以帮助我解决我已经为第一列“名字”创建的示例的逻辑。至少一些指导将不胜感激。先感谢您!此外,您可能会注意到网格已损坏,标题行被卡住且无法水平滚动。此问题已修复!
这是笨蛋! https://plnkr.co/edit/cAiZOIBpYZgDpfwspABK?p=preview
这是我的一些 Angular 和 HTML 代码!我知道我的代码不是很 DRY,我很快就会重构我的代码。
<head>
<meta charset="utf-8" />
<title>AngularJS Plunker</title>
<script>document.write('<base href="' + document.location + '" />');</script>
<script data-require="angular.js@1.5.x" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.11/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.11/angular-animate.js"></script>
<script data-require="angular-ui-bootstrap@*" data-semver="1.3.3" src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/1.3.3/ui-bootstrap-tpls.js"></script>
<script data-require="ui-grid@*" data-semver="4.0.2" src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-grid/4.0.2/ui-grid.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angularjs-dropdown-multiselect/1.11.8/angularjs-dropdown-multiselect.min.js"></script>
<script type="text/javascript" src="script.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular-touch.js"></script>
<script data-require="jquery@*" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script data-require="bootstrap.js@*" data-semver="3.3.6" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<!--LINK TAGS-->
<link data-require="ui-grid@*" data-semver="4.0.2" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-grid/4.0.2/ui-grid.css" />
<link data-require="bootstrap-css@*" data-semver="4.0.0-alpha.4" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.4/css/bootstrap.min.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body ng-controller="mainCtrl">
<button id="filterButton" type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">Filter Columns</button>
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title"><strong>Filter Columns</strong></h4>
</div>
<div class="modal-body">
<table>
<thead>
<tr>
<th>Column Name:</th>
<th>Filter:</th>
<th>Value:</th>
</tr>
</thead>
<tbody>
<tr>
<!-- FIRST COLUMN ROW -->
<td>
<select ng-model="columnName" class="form-control" class="columnName">
<option></option>
<option>First Name</option>
<option>Last Name</option>
<option>Company</option>
<option>Employed</option>
<option>Gender</option>
<option>Country</option>
<option>DOB</option>
<option>Age</option>
</select>
</td>
<td>
<select ng-model="filter" class="form-control" class="filter">
<option>Equal to</option>
<option>Contains</option>
<option>in between</option>
<option>Not equal to</option>
<option>Greater than</option>
<option>Less than</option>
</select>
</td>
<td>
<input class="form-control" type="text">
</td>
<!-- FIRST COLUMN ROW -->
</tr>
<tr>
<!-- SECOND COLUMN ROW -->
<td>
<select class="form-control" class="columnName">
<option></option>
<option>First Name</option>
<option>Last Name</option>
<option>Company</option>
<option>Employed</option>
<option>Gender</option>
<option>Country</option>
<option>DOB</option>
<option>Age</option>
</select>
</td>
<td>
<select class="form-control" class="filter">
<option>Equal to</option>
<option>Contains</option>
<option>in between</option>
<option>Not equal to</option>
<option>Greater than</option>
<option>Less than</option>
</select>
</td>
<td>
<input class="form-control" type="text">
<!-- SECOND COLUMN ROW -->
</tr>
<tr>
<!-- THIRD COLUMN ROW -->
<td>
<select class="form-control" class="columnName">
<option></option>
<option>First Name</option>
<option>Last Name</option>
<option>Company</option>
<option>Employed</option>
<option>Gender</option>
<option>Country</option>
<option>DOB</option>
<option>Age</option>
</select>
</td>
<td>
<select class="form-control" class="filter">
<option>Equal to</option>
<option>Contains</option>
<option>in between</option>
<option>Not equal to</option>
<option>Greater than</option>
<option>Less than</option>
</select>
</td>
<td>
<input class="form-control" type="text">
</td>
<!-- THIRD COLUMN ROW -->
</tr>
<tr>
<!-- FORTH COLUMN ROW -->
<td>
<select class="form-control" class="columnName">
<option></option>
<option>First Name</option>
<option>Last Name</option>
<option>Company</option>
<option>Employed</option>
<option>Gender</option>
<option>Country</option>
<option>DOB</option>
<option>Age</option>
</select>
</td>
<td>
<select class="form-control" class="filter">
<option>Equal to</option>
<option>Contains</option>
<option>in between</option>
<option>Not equal to</option>
<option>Greater than</option>
<option>Less than</option>
</select>
</td>
<td>
<input class="form-control" type="text">
</td>
<!-- FORTH COLUMN ROW -->
</tr>
<tr>
<!-- FIFTH COLUMN ROW -->
<td>
<select class="form-control" class="columnName">
<option></option>
<option>First Name</option>
<option>Last Name</option>
<option>Company</option>
<option>Employed</option>
<option>Gender</option>
<option>Country</option>
<option>DOB</option>
<option>Age</option>
</select>
</td>
<td>
<select class="form-control" class="filter">
<option>Equal to</option>
<option>Contains</option>
<option>in between</option>
<option>Not equal to</option>
<option>Greater than</option>
<option>Less than</option>
</select>
</td>
<td>
<input class="form-control" type="text">
</td>
<!-- FIFTH COLUMN ROW -->
</tr>
<tr>
<!-- SIXTH COLUMN ROW -->
<td>
<select class="form-control" class="columnName">
<option></option>
<option>First Name</option>
<option>Last Name</option>
<option>Company</option>
<option>Employed</option>
<option>Gender</option>
<option>Country</option>
<option>DOB</option>
<option>Age</option>
</select>
</td>
<td>
<select class="form-control" class="filter">
<option>Equal to</option>
<option>Contains</option>
<option>in between</option>
<option>Not equal to</option>
<option>Greater than</option>
<option>Less than</option>
</select>
</td>
<td>
<input class="form-control" type="text">
</td>
</tr>
<!-- SIXTH COLUMN ROW -->
</tbody>
</table>
<a href="#">add filter</a>
</div>
<div class="modal-footer">
<button id="applyButton" type="button" class="btn btn-primary">Apply Filters</button>
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
</div>
</div>
</div>
</div>
<br>
<br>
<h1>Hello World</h1>
<div ui-grid="gridOptions" ui-grid-pagination ui-grid-exporter ui-grid-resize-columns ui-grid-selection ui-grid-move-columns ui-grid-edit ui-grid-pinning class="myGrid" ng-model="columnName">
</div>
</body>
</html>
//下面的 Angular 代码
var myApp = angular.module("myApp.bootstrap",["ngAnimate",
"ui.bootstrap", "ui.grid", "ui.grid.moveColumns", "ui.grid.edit",
"ui.grid.selection", "ui.grid.resizeColumns", "ui.grid.exporter",
"ui.grid.pagination", "ui.grid.pinning", "angularjs-dropdown-multiselect"]);
myApp.controller('mainCtrl', ['$scope', 'uiGridConstants', function ($scope, uiGridConstants) {
$scope.example1model = [];
$scope.example1data = [{
id: 1, label: "Cox"},{
id: 2, label: "Lorraine"},{
id: 4, label: "Nancy"},{
id: 5, label: "Laura"},{
id: 6, label: "Ana"},{
id: 7, label: "Feli"},{
id: 8, label: "Victoria"},{
id: 9, label: "Relu"},{
id: 10, label: "Cristi"},{
id: 11, label: "Jacob"},{
id: 12, label: "Mike"},{
id: 13, label: "Minodoa"},{
id: 14, label: "Daciana"},{
id: 15, label: "Utu"},{
id: 16, label: "Kyle"}
];
$scope.example1settings = {
scrollableHeight: '300px',
scrollable: true,
enableSearch: true,
checkBoxes: true
};
$scope.gridOptions = {
enableFiltering: true,
enableFullRowSelection: true,
enableSelectAll: true,
enableGridMenu: true,
paginationPageSizes: [25,45,65],
paginationPageSize: 45,
enableSorting: true,
enableHorizontalScrollbar: 1,
columnDefs: [
{field: 'firstName', minWidth: 250, headerCellClass: 'blue',
filterHeaderTemplate:'<div class="ui-grid-filter-container"><div ng-dropdown-multiselect="" options="grid.appScope.example1data" selected-model="grid.appScope.example1model" checkboxes="true" extra-settings="grid.appScope.example1settings"></div></div>'},
{field: 'lastName', minWidth: 250, headerCellClass: 'blue'},
{field: 'company', minWidth: 250, headerCellClass: 'blue'},
{field: 'employed', minWidth: 250, headerCellClass: 'blue'},
{field: 'gender', minWidth: 250, headerCellClass: 'blue',
filter: {
term: '1',
type: uiGridConstants.filter.SELECT,
selectOptions: [ { value: '1', label: 'male' }, { value: '2', label: 'female' }]
},
cellFilter: 'mapGender'},
{field: 'country', minWidth: 250, headerCellClass: 'blue'},
{field: 'dob', minWidth: 250, headerCellClass: 'blue'},
{field: 'age', minWidth: 250, headerCellClass: 'blue'}
],
};
/*=========GRID OPTION========*/
$scope.gridOptions.multiSelect = true;
/*=========GRID OPTION=========*/
$scope.myData = [
{
"firstName": "Cox",
"lastName": "Carney",
"company": "Enormo",
"employed": true,
"gender": "male",
"country": "USA",
"dob": "08/14/1992",
"age": "25"
},
$scope.gridOptions.data = $scope.myData;
$scope.myData.forEach( function addDates( row, index ){
row.gender = row.gender==='male' ? '1' : '2';
});
}])
myApp.filter('mapGender', function() {
var genderHash = {
1: 'male',
2: 'female'
};
return function(input) {
if (!input){
return '';
} else {
return genderHash[input];
}
};
});
最佳答案
您的意思是要通过选中多个“名字”选项来过滤行吗?
我能想到的一件事是你可以自己做过滤器。每次选中/取消选中复选框选项时都会过滤网格数据,过滤后,您将数据重新分配回 $scope.myData
关于javascript - 多选下拉过滤器 AngularJS 逻辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45310482/
我试图让我的 jQuery 脚本从单击的链接中提取 url,然后将其插入到我的视频标签中。有什么建议吗? 我试过拼接我从 .html() 中得到的内容,但引号总是搞砸了。
我遇到了 docker 的问题。 场景是这样的:我们使用Codebuild+Packer+docker创建AMI,用于deploy。在这一步中,我们从 Artifactory 中提取图像,并且除了提取
我目前正在学习 RxJS。 在文档中,我找到了这个数组。 我尝试在谷歌上搜索“pull and push javascript”,但我什至不知道如何调用这些实体/概念。我不明白那是什么意思?我假设 S
Title 在小屏幕上,我首先需要标题,然后是文本字段,但在中等以上的屏幕上,我需要相反的方式 - 我已经尝试过推和拉,但它们无法工作 - 有什么想法吗? 最佳答案 根据 Swa
zmq 的某些部分未以可预测的方式运行。 我正在使用 VS2013 和 zmq 3.2.4。为了不在我的 pubsub 框架中“丢失”消息 [旁白:我认为这是一个设计缺陷。我应该能够首先启动我的订阅者
我正在编写一个使用嵌套 Bootstrap 列的页面。我正在使用推/拉让列在移动设备上切换位置,而且效果很好。但是,在桌面上我遇到了一些奇怪的间距问题。嵌套列偏移到父列的右侧。 我设置了一个 fidd
在拉取一些 docker 镜像(但不是全部)时出现此错误: failed to register layer: Error processing tar file(exit status 1): op
我创建了一个 Kubernetes 集群,并为每个节点安装了 docker。 当我尝试使用 docker push local_registry_addr:port/image_id 将图像拉取或推送
没有明确地推/拉单个书签,书签何时从 repo 复制/更新到 repo? 在我对两个本地存储库的测试中,我无法推断出一致的行为。有时从 A 到 B 或 B 到 A 的推/拉会复制/更新书签,有时不会。
在 Bootstrap 3 文档中,他们给出了以下使用 push 和 pull 类更改列顺序 (http://getbootstrap.com/css/#grid-column-ordering) 的
从这个问题开始Three column Bootstrap layout with left sidebar at bottom我了解了 Bootstrap 列推拉。 下面的代码片段几乎可以得到我想要
许多 Repo 函数的签名包括 **kwargs,其中文档说,您可以将参数传递给底层包装的 git 命令。但是,*args 没有位置。为了传递类似标志的参数,如 --all。我原以为它们会像 my_r
如果您将大文件推送/拉到设备上,这真的很烦人,现在无法知道它有多远。是否可以运行 adb push 或 adb pull 并使用“bar”实用程序获取进度条? 这里的主要问题是我认为 adb 需要两个
当我尝试使用 Gitkrakent 向/从 Heroku 推/拉时,GitKraken 告诉我: "Please log in to continue" 请求的“用户/登录”是什么? (我个人 Her
我在 docker 容器中有一个 Jenkins 2.150.1。要安装这个 Jenkins,我只需使用 jenkinsci/blueocean:1.9.0图片。 我创建了一个管道,然后尝试使用我的
我想使用 Jenkins 做下一步: 1- docker pull 2- docker run -i -t 我已经在jenkins上安装了docker插件,但是这可行吗? docker plugi
如果我正在处理一些我不想提交的文件,我只需保存它们。然后我有其他文件想要推送到服务器,但是如果其他人对存储库进行了更改,并且我将它们拉下来,它会要求我 merge 或 rebase ..但是这些选项中
无论出于何种原因,我在 FB 上共享链接时尝试使用的图像都无法加载。给出的确切错误是: 提供了og:image,无法下载。发生这种情况的原因有多种,例如您的服务器使用不受支持的内容编码。爬虫接受 de
今天我买了三星 Galaxy Note 3,它配备了 Android 4.3。由于它太新了,我找不到根植我设备的方法,所以我尝试使用 adb 连接……我失败了。 所以,我用了这个 D:\android
我尝试通过 airflow cli test 命令测试 2 个任务` 第一个任务运行,自动将最后一个控制台推送到 xcom,我按预期在 Airflow GUI 中看到了值 some value 当我通
我是一名优秀的程序员,十分优秀!