I have a repeating group that displays current cell text (not a list). Each text contains placeholders like {{abc}}, {{def}}. I have 4 inputs and when a user enters something (no button) I want to change the placeholder to the input value. It should only be replaced when the input value is not empty. If it is empty then display the placeholder. I don’t want to save the input value to the database because of the nature of the application.
tried almost everything I know and the problems I’m facing are:
- It only changes when all fields are not empty.
- If I use or operator then if one input value is not empty it will replace all (other placeholders)
- tried to use javascript but didn’t work
Any help would be highly appreciated