Filter reset when clicking HTML5 search reset

Forced keyup when clicking the field to force the filter to be reset.
This commit is contained in:
Josh Sherman 2013-10-10 11:46:14 -04:00
parent 2789a84d15
commit 32c56ee43f

View file

@ -34,6 +34,8 @@
input = $("<input type=\"search\"/>").attr({
id: id,
size: o.size
}).on('click', function () {
$(this).keyup();
});
$("<p/>").addClass("formTableFilter").append(label).append(input).insertBefore(this);