Hey everyone! Here's my challenge...
I have a page where a single backend query pulls thousands of records then divides those records into seven categories which are then presented on screen across seven tabs. This works fine, except that it takes a while to load given the number of records.
I can't use infinite scroll with the current set up because the infinite scroll option is only available on queries that are made from a list view. And right now the query is attached to a higher order widget under which there are several list views to separate the data and generate children.
So I tried adding independent queries to every list view, each generating their own children, but in this case, the first tab works fine, but when I tab over none of the other data is loaded. Instead I see an infinite loading icon. I will attach an image showing this set up.
QUESTION: Is there some reason my solution isn't working? OR is there a better solution I am not aware of that would allow infinite scroll across multiple tabs on a single page.
Thank you!