There is a need to have a two-way binding for a variable with such untypical name like "array[element]".
The syntax below works but when I change 0 to @index it gets broken. Adding back slashes before brackets [ ] does not work as well.
<input type="text" name="prices[{{@index}}]" value="{{someForm.inputs["prices[0]"].value}}" />
What is the proper syntax to get the variable binded?
You can use
@context: