Hi, I pass parameters to some of my componenets but they don't persist by default and are lost on subsequent renders. So on my first render I copy them to a session persist member, but then I end up with 2 variables defined for the same value and across each component in the chain that uses the parameter. This seems inefficient and I am now considering moving the value into the session and accessing with some methods manually.
Is there a better way? I think next I will add a hidden field or client type @Persist, but I'm not a huge fan of that either. John