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
T20690 - Dropdown with lazy loading duplicates choices https://surveyjs.answerdesk.io/internal/ticket/details/T20690
To reproduce the issue, modify the skip (0) and take (5) parameters of the Lazy Loading function: View Demo.
0
5
survey.onChoicesLazyLoad.add((_, options) => { if (options.question.getType() === "dropdown" && options.question.name === "country") { const url = `https://surveyjs.io/api/CountriesExamplePagination?skip=0&take=5&filter=${options.filter}`; sendRequest(url, (data) => { options.setItems(data.countries, data.total); }); } });
Start entering a search criteria. You can see that an item list is duplicated.
The text was updated successfully, but these errors were encountered:
OlgaLarina
No branches or pull requests
T20690 - Dropdown with lazy loading duplicates choices
https://surveyjs.answerdesk.io/internal/ticket/details/T20690
To reproduce the issue, modify the skip (
0
) and take (5
) parameters of the Lazy Loading function: View Demo.Start entering a search criteria. You can see that an item list is duplicated.
2024-11-27_16-34-40.mp4
The text was updated successfully, but these errors were encountered: