Hey guys, how are you?
I have a Ranking containing a list of accordion items. Each accordion item when expanded has information to be displayed.
Clearly in testing, trying to load all these items caused a memory crash in the application. Solution to not break: I used conditional rendering to display some information blocks only when expanding the accordion item. Problem solved, but each click there is a delay (lag).
IDEA FOR A POSSIBLE BETTER SOLUTION:
What if Weweb was loading the data in lazy loading, that is, only load the data for the second item in the list only if the first one has been completely loaded? I would really like to test this possibility.
Does anyone know if weweb has this feature available and how to do it?
thanks in advance!!