gpt4 book ai didi

jquery - 具有列过滤器下拉列表和多个复选框选择的数据表

转载 作者:行者123 更新时间:2023-12-03 22:35:17 24 4
gpt4 key购买 nike

我从 joao vitor retamero 那里找到了这段出色的代码 - fiddle :https://jsfiddle.net/jvretamero/bv6g0r64/显示如何在 jquery 数据表列过滤器中进行多项选择。但我需要将过滤器容器转换为下拉菜单,容器中的每个项目都是一个复选框。是的,正如我在几个小时的研究中发现的那样,有很多对此的引用。但我还没有找到任何例子,或者任何关于如何做到这一点的明确解释,尽管很多人说可以使用 jquery 插件。谁能举出一些例子吗?我什至不知道如何开始。非常感谢。

<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css"></script>

$(document).ready(function() {
$('#example').DataTable( {
initComplete: function () {
this.api().columns().every( function () {
var column = this;
var select = $('<select multiple="multiple"><option value=""></option></select>')
.appendTo( $(column.footer()).empty() )
.on( 'change', function () {
var vals = $('option:selected', this).map(function (index, element) {
return $.fn.dataTable.util.escapeRegex($(element).val());
}).toArray().join('|');

column
.search( vals.length > 0 ? '^('+vals+')$' : '', true, false )
.draw();
} );

column.data().unique().sort().each( function ( d, j ) {
select.append( '<option value="'+d+'">'+d+'</option>' )
} );
} );
}
} );
} );

最佳答案

试试这个,它不使用任何额外的 JS/jQuery 库:

// This code has been beautified via http://jsbeautifier.org/ with 2 spaces indentation.
$(document).ready(function() {
function cbDropdown(column) {
return $('<ul>', {
'class': 'cb-dropdown'
}).appendTo($('<div>', {
'class': 'cb-dropdown-wrap'
}).appendTo(column));
}

$('#example').DataTable({
initComplete: function() {
this.api().columns().every(function() {
var column = this;
var ddmenu = cbDropdown($(column.header()))
.on('change', ':checkbox', function() {
var active;
var vals = $(':checked', ddmenu).map(function(index, element) {
active = true;
return $.fn.dataTable.util.escapeRegex($(element).val());
}).toArray().join('|');

column
.search(vals.length > 0 ? '^(' + vals + ')$' : '', true, false)
.draw();

// Highlight the current item if selected.
if (this.checked) {
$(this).closest('li').addClass('active');
} else {
$(this).closest('li').removeClass('active');
}

// Highlight the current filter if selected.
var active2 = ddmenu.parent().is('.active');
if (active && !active2) {
ddmenu.parent().addClass('active');
} else if (!active && active2) {
ddmenu.parent().removeClass('active');
}
});

column.data().unique().sort().each(function(d, j) {
var // wrapped
$label = $('<label>'),
$text = $('<span>', {
text: d
}),
$cb = $('<input>', {
type: 'checkbox',
value: d
});

$text.appendTo($label);
$cb.appendTo($label);

ddmenu.append($('<li>').append($label));
});
});
}
});
});

CSS

/* Styles for the drop-down. Feel free to change the styles to suit your website. :-) */

.cb-dropdown-wrap {
max-height: 80px; /* At most, around 3/4 visible items. */
position: relative;
height: 19px;
}

.cb-dropdown,
.cb-dropdown li {
margin: 0;
padding: 0;
list-style: none;
}

.cb-dropdown {
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
overflow: hidden;
background: #fff;
border: 1px solid #888;
}

/* For selected filter. */
.active .cb-dropdown {
background: pink;
}

.cb-dropdown-wrap:hover .cb-dropdown {
height: 80px;
overflow: auto;
transition: 0.2s height ease-in-out;
}

/* For selected items. */
.cb-dropdown li.active {
background: #ff0;
}

.cb-dropdown li label {
display: block;
position: relative;
cursor: pointer;
line-height: 19px; /* Match height of .cb-dropdown-wrap */
}

.cb-dropdown li label > input {
position: absolute;
right: 0;
top: 0;
width: 16px;
}

.cb-dropdown li label > span {
display: block;
margin-left: 3px;
margin-right: 20px; /* At least, width of the checkbox. */
font-family: sans-serif;
font-size: 0.8em;
font-weight: normal;
text-align: left;
}

/* This fixes the vertical aligning of the sorting icon. */
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
background-position: 100% 10px;
}

演示

<罢工> https://jsfiddle.net/41vgefnf/1/
<罢工> https://jsfiddle.net/41vgefnf/6/
<罢工> https://jsfiddle.net/41vgefnf/8/
<罢工> https://jsfiddle.net/41vgefnf/9/
https://jsfiddle.net/41vgefnf/10/

更新

我将过滤器下拉列表移至标题,并将下拉列表的样式设置为看起来更像下拉菜单。 (下拉功能中不涉及 JS 或 jQuery;只是带有基本动画的纯 CSS - CSS3 transition 。)

更新#2

抱歉,我忘记应用 CSS“active”class到选定的项目。

更新#3

更新#2情况相同,但用于下拉菜单包装。 (抱歉,总是忘记事情......我进行编辑只是为了符合/满足您实际请求的要求/更改。:) 但我认为此更新将是最终修订版。 )

更新#4

修复了下拉菜单包装器的“事件”状态更改

制作人员

感谢@Giacomo 的 Fiddle 。 =)

关于jquery - 具有列过滤器下拉列表和多个复选框选择的数据表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49846701/

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