Is there a way to load unrendered items?

Hi,

I have a collection list of items and use conditional rendering to filter out some items.
Still, I’d like to have a button that the user can click to show filtered items.

I can’t find how to uncheck conditional rendering through a workflow, in order to load in the DOM the unrendered items.

Is there a way to do it (without filtering the collection)?

Hmm, you’re trying to display two different datasets, or better, two different states of a filter. A thing that you could do, instead of hiding the items, would be adding conditions to the filters themselves. Check this out:

I’m not sure which filtering of your collection you want to avoid, but doing a clientside filter (as shown in the video) is the same (just simpler) as using the conditional display. And you still avoid filtering it on your backend.

Thanks Broberto.

I am trying a different display approach with tabs:
The first tab will show a collection filtered in the back-end
The second tab will load the inverse collection (still filtered in the back-end), so another collection for WeWeb.
It seems that I can’t display 2 different collections on two separate tabs:
when I change tabs, the collection list binding stays the same.

Is this related to How Do I Connect Tab Control to a Collection? - #2 by khairul ?

I managed to make the tabs work.
The navigator page was a bit confusing.