0

Here is my code:

<tr t-foreach="keyword" t-as="item"><td><t t-esc="item_value"/></td><td><input type="text" name=""/></td></tr>  

So here, Textbox are generated dynamically.

Now I want to set textbox name to the value that is generated on

<t t-esc="item_value"/> 
Bazzinga...
  • 996
  • 2
  • 16
  • 26
Jamin
  • 133
  • 12

1 Answers1

1

To set the text box name to item_value you need to use the t-att attribute:

<input type="text" t-att-name="item_value"/>

Hope this helps!

ronster37
  • 135
  • 1
  • 4