Input values inside of elements that repeat - bug?

I have the following situation: I have an inbox in which I’m showing items and I want users to be able to add comments to those items.

To do that, I have a Rows element that creates as many rows as items should be displayed.

Inside the repeating row, I have created a Form Container. And inside the Form Container, I have a “long text” input. At the end, I have as many Forms and as many long text inputs as items there are in the inbox.

The problem here is that when I try to execute the Form Container, I can’t bind the text input. Actually I’ve tried with other input types and it doesn’t work either. The input just doesn’t show under the list of variables. If I use the debugger mode, it doesn’t update any variable either.

Is this a bug? Because even if I try to store whatever I write in a different variable, I can’t do it since the element doesn’t appear in the variable list.

Thank you!

You need to use the “On changed” actions on your inputs to save their values to a variable. You have to do this manually and yourself, because WeWeb “loses the state” once you repeat any input within a repeating group.

Thank you for your help @Broberto :slight_smile: