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
In the documentation for server side filtering, this line of code does not make sense to me (and removing it makes the code work) :
if (isShowing && initialized) { return; // do nothing, keep the last results } initialized = true;
This will only display the initial query and won't react to typing (as does the demo !)
In my implementation, I simply have :
if (!isShowing) { return; }
so we won't hit the server unnecessary.
The text was updated successfully, but these errors were encountered:
jDramaix
No branches or pull requests
In the documentation for server side filtering, this line of code does not make sense to me (and removing it makes the code work) :
This will only display the initial query and won't react to typing (as does the demo !)
In my implementation, I simply have :
so we won't hit the server unnecessary.
The text was updated successfully, but these errors were encountered: