I have implemented a table with infinite scroll in HTML with jquery, php, mysql.
The query records are done correctly. In php, query intervals are handled well with the LIMIT clause of mysql. And in each response, the variables that control those query limits are updated. That part works well when you scroll.
The problem is that, for each record, the user can perform an action, for example, "activate" or "inactivate". Well that attribute as such, is taken into account in the query for the infinite Scroll. So when scrolling the following query is altered, since that record is not part of the query.
Thanks in advance.
EDIT: In tests performed, the number of records is skipped as the user has changed in the next query.