We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have 1,000 results, and am on page 10 of said results. The pager says "page 91-100 of 1000".
If I then type in "cat", the paging says "page 91 - 5 of 5", displaying no results obviously.
I've quickly hacked this...:
// update the options with the latest q value if ( options.searchbox_class.length == 0 ) { options.q = $('.facetview_freetext', obj).val();
... so the paging gets set to 0 before the new search is run
// update the options with the latest q value if ( options.searchbox_class.length == 0 ) { options.paging.from = (options.q != $('.facetview_freetext', obj).val()) ? 0 : options.paging.from; options.q = $('.facetview_freetext', obj).val();
I'm sure you have a much more elegant solution though!!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have 1,000 results, and am on page 10 of said results. The pager says "page 91-100 of 1000".
If I then type in "cat", the paging says "page 91 - 5 of 5", displaying no results obviously.
I've quickly hacked this...:
... so the paging gets set to 0 before the new search is run
I'm sure you have a much more elegant solution though!!
The text was updated successfully, but these errors were encountered: