When the row for the repeating group is clicked, set a state to hold the value of that cell (the User I think is what you’re going for?). Then on the input, set the initial content to be that states value (which would be something about the User).
I have implemented as per below, but the input field does not show the First Name when the User Group is clicked.
It continues to only show the text that was typed by the user into the input, but I’m trying to have the input text replaced by the First Name from the repeating User Group that was clicked.
Thanks for clarification, unfortunately changing that did not make a difference. I also tried putting it in the placeholder and the initial content at the same time, but no dice.
In your workflow for clicking the repeating group cell, add a step to “reset data” … you should group the input and then you can reset data on the group. Make sure to do this before you set the state. That should fix it.
Just before you set the custom state, are you able to use the “reset inputs” action? to clear it
Or if that doesn’t work, perhaps you can run a JavaScript action (under elements) if you have Toolbox installed that looks like the below. This implies that you’ve set the Input’s element id to “search_input”
For anyone else that comes along needing help, my solution was to use a combination of the techniques above AND to remove some conditionals on my repeating group that were messing things up.
If you’ve got conditionals setup and things aren’t working, try removing them to see what happens.