I have a RG of products that users can vote on. The products can be sorted in a few ways (Trending, Recently Added, Most Popular). I want to prevent the RG from automatically reorganizing for everyone every time any user makes a vote.
How do I only have the RG update on page load and not keep updating as other users make changes to the data base?
If there is already a thread on this please share the link
In theory you would think that this would work. Unfortunately it is making no effect on the RG. From my research I am pretty sure the :make static operation is designed exactly for this. Could it be a bug?
I’m suggesting that because make static isn’t working, you set a custom state and make that the source.
For example, setup a workflow that triggers on Page Load, and create an action for that event.
That action should set a custom state (let’s just put it on the page element, call it product_list, with a type of Products and check the box to make it a list) with a value of your Search for Products. Then on your RepeatingGroup Product, set the data source to product_list.
If you still are not catching it, let me know and I’ll build a sample for you.