I have some database tables that are used in tables.props.data on many pages
To avoid having multiple sql reads, 1 per table, I figured I would put a single custom prop in the perspective session, then refer back to this custom prop from all my tables
When I do a refreshBinding on any of the tables, it does not seem to trigger a refresh on the session custom prop.
Is my strategy sound? Am I expecting too much?
If not, how do I fire the refresh on the custom prop?
Generally, if a component has one or more bindings then it is monitoring for changes in any of them and will re-evaluate when any changes. That means that if your tables have a reference to your SQL query custom property in a binding that you only need to refresh the custom property and everything will be re-evaluated. (You should double-check this is true if the value of the custom prop remains the same after refresh - I'm not sure.)
Tip: Use the "Reply" link embedded in the bottom of a post if you want the user to receive an inbox notification. Alternatively, use the @username syntax. I only happened to find your reply.