X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/2b7820cdaddf2a9db01c2091fa3686f4909119da..68c81b86034b459e7b13f66db61bd0e416548c8c:/searchlocal.js diff --git a/searchlocal.js b/searchlocal.js index ac38dce..6c37fc9 100644 --- a/searchlocal.js +++ b/searchlocal.js @@ -1,3 +1,5 @@ +var filterupdate; + function filtercell(el, set, action) { switch (action) { case 'focus': @@ -54,6 +56,8 @@ function filterrows(table, match, action) { } function filtertable(query, action) { + filterupdate = undefined; + if (query === undefined) query = document.getElementById('search').q.value; var table = document.getElementsByTagName('TABLE')[0]; if (!action) { @@ -67,6 +71,11 @@ function filtertable(query, action) { query = match[2]; } + if (query == '' && action == 'add') { + // restore all columns if explicitly adding all ("+") + filtercols(table, function(){return true}, 'add'); + // continue to restore rows + } if (/^[a-z_]+$/.test(query) && document.querySelector('.b-a-'+query)) { // column if class b-a-* exists var match = function(th) { @@ -123,7 +132,8 @@ function prependsearch(target) { newelement('input', { type: 'search', name: 'q', - onkeyup: "filtertable(this.value, 'focus')", + onkeyup: "if (!filterupdate) filterupdate = " + + "window.setTimeout(filtertable, 300, undefined, 'focus')", }), newelement('input', { type: 'button',