您可以使用
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
select2v4.0.0测试版尚未使用该功能。使用存储库附带的select2 v3.4.6。