What i want to populate the data to list field before rendering the tamplete. This is what i have so far.
class SizeVariationForm(Form):
name = TextField("name")
sku = TextField("SKU Number")
class AddVariationForm(NewListingForm):
item_list = FieldList(FormField(SizeVariationForm))
add_field = SubmitField('Add Variations')
@app.route('/index', methods=['GET', 'POST'])
def add_inputs():
form = AddVariationForm(request.form)
if form.add_field.data:
# what i want is to poluate sku data here
new_variation = form.item_list.append_entry()
return render_template('index')
The current result is
<input id="item_list-0-variation" value="">
Desired result is
<input id="item_list-0-variation" value="Some Value here">
You will get expected output but I am not sure this is what you want.