You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the template side it works nice and retrieves 10 items for every scroll down. However, the problem is that the query initialization time is too long. In the '_format_items()' function, all the items are iterated, not only chunks. I tried sending a part of the queryset to '_format_items()' function(queryset[x:y]) but then after the first page load on the template it didn't retrieve rest of the items on scroll down.
On the template side it works nice and retrieves 10 items for every scroll down. However, the problem is that the query initialization time is too long. In the '_format_items()' function, all the items are iterated, not only chunks. I tried sending a part of the queryset to '_format_items()' function(queryset[x:y]) but then after the first page load on the template it didn't retrieve rest of the items on scroll down.
The text was updated successfully, but these errors were encountered: