Bind value to Input element

Hello,

As i can see there is no way to bind variable to input element for text. There is for initial value, but there is nothing like Text or Value. Is there something that i am missing?

Thank you in advance

Hi Zoran,

what exactly do you want to achieve?

Hello Batik,

I want this:

Input fileds which number will depend of items in array, which i have already done:

Now i want every input field to have value from Array.value, but input element dont have option to bind to value. Thats all

tried to recreate your setup: Array example

The element tree (horizontal repeating items, 1 level array):

The element tree (vertical repeating items, 2nd level array):

Example data

[{“id”:1,“children”:[{“id”:11,“value”:101},{“id”:12,“value”:102},{“id”:13,“value”:103}]},{“id”:2,“children”:[{“id”:21,“value”:201},{“id”:22,“value”:202},{“id”:23,“value”:203}]},{“id”:3,“children”:[{“id”:31,“value”:301},{“id”:32,“value”:302},{“id”:33,“value”:303}]}]

Thanks. I will test your way. I have try before with initial value but it was changing values in all input fields. Probably i have doing something wrong.

Thanks again i will check it

It was necessary to do it other way because other things was already working and if i changed i would need to do it from scratch. And because of my limited knowledge. However i solved it but if i need it next time it will definitely be you approach. Cleaner, simpler, faster.

Thank you very much