Create a list of text inputs

Is it possible to append a text field with a new text input and keep the original text?

As in: testtext = testtext + textinput.

What I really want to do is to create an ongoing list of text inputs to preserve the inputs.

Is that possible?

I would say the best way to do this is with custom states. Have a custom state that is type text, either as a list or not is up to you. You can then do a workflow where everytime that input is changed, it saves the value to the custom state.

For example:

User types something in the input.
Workflow runs: When this inputs value is changed, set state of element, value = elements text + this input.

what this does is it takes whatever the user typed, saves it to the custom state along with whatever was already in the custom state. You can then have a button or something to save the whole list or text to your database.

If you want you could also do this all using your database depending on your use case.

I figured it out. I found the Append function that appends text, so you don’t use a + function.

Thanks! :slight_smile:

Yep that works too! Glad you got it working :slight_smile: