我正在使用tablesorter下拉列表,我可以从中选择一个元素。我希望能够选择多个元素。有没有办法使用表格分类器?
我尝试查找here,但我不确定是否有任何直接的方法。另外这个issue似乎表明没有直接的方法吗?
编辑:
代码
filter_functions : {
0 : {
"a" : function(e, n, f, i, $r) { return e===f; },
"b" : function(e, n, f, i, $r) { return e===f; },
"c" : function(e, n, f, i, $r) { return e===f; },
"d" : function(e, n, f, i, $r) { return e===f; }
}
答案 0 :(得分:1)
您可以使用filter_formatter
选项和extra filter-formatter select2 code来使用select2插件。 Here is a demo
filter_formatter : {
// default settings on first column
0 : function($cell, indx){
return $.tablesorter.filterFormatter.select2( $cell, indx, {
// *** select2 filter formatter options ***
cellText : '', // Text (wrapped in a label element)
match : true, // adds "filter-match" to header & modifies search
value : [], // initial select2 values
// *** ANY select2 options can be included below ***
// (showing default settings for this formatter code)
multiple : true, // allow multiple selections
width : '100%' // reduce this width if you add cellText
});
}
}
注意:请注意,$.tablesorter.filterFormatter.select2
功能尚不适用于select2 v4.0.0 beta。使用repsitory附带的select2 v3.4.6。