I'm creating a game in oTree where players all enter a round with a countdown timer. At any point, a player can make a decision and click the submit button. What I need is for this decision to be displayed to the players that have not yet made a decision.
I currently have the submit button storing the values at the group level, so the values can be accessed from any player. I added simple if
statements on the web page to display what other players have done, and these values display correctly if the player refreshes their web page. Is there a command to either force players' web pages to refresh or advance?
I'm thinking the refresh will be the simplest solution since I can call group functions when a player presses the submit button. If there is no command, please push me toward whatever structure can display this type of information.