[Answer]-Passing a template variable as input to a hidden form input field

1👍

Try:

  <input name="{{ listEntry.someId }}" type="hidden" value="{{ listEntry.value }}" />

However if you have one <form> element per row, you need to give submit action a value based on which row it is too.

Leave a comment