mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
filter-select updates properly within the sticky header; fixes #288
This commit is contained in:
parent
cfb61554b5
commit
0d127da1a1
@ -875,7 +875,7 @@ ts.addWidget({
|
||||
$(this).find(filterInputs).val( c.$filters.find(filterInputs).eq(i).val() );
|
||||
});
|
||||
});
|
||||
stkyCells.find(filterInputs).bind('keyup search', function(e){
|
||||
stkyCells.find(filterInputs).bind('keyup search change', function(e){
|
||||
// ignore arrow and meta keys; allow backspace
|
||||
if ((e.which < 32 && e.which !== 8) || (e.which >= 37 && e.which <=40)) { return; }
|
||||
flag = true;
|
||||
|
Loading…
Reference in New Issue
Block a user