How to use WTForms-Dynamic-fields Module (Flask/Python)










2















I guess this question can be interpreted more generally with help on how to implement custom Python Modules.



I am building a Flask Web App and trying to create a reasonably complex form that basically allows a user to add more fields on button click but still retaining the benefits of WTForms.



I have come across this module online: https://pypi.org/project/WTForms-Dynamic-Fields/



I am confused as to how I am supposed to implement the module.



It says to create an instance of the module before using the add_field() and add_validator() methods. Before then binding the form variable to the 'process()' method. I guess I am meant to include a JavaScript button but getting very confused as to how to do this.



As a simple example I am trying to implement it on this simple WTForm:



class LoginForm(FlaskForm):
username = StringField('username', validators=[InputRequired()])
password = PasswordField('password', validators=[InputRequired()])
dynamic = WTFormsDynamicFields()


The HTML form:



<form method="POST" action="url_for('form')">
form.csrf_token
render_field(form.username)
render_field(form.password)

<button onclick="dynamic.add_field('email', 'Email address', TextField)">Click Me!</button>




App.py:



@app.route('/form/', methods=['GET', 'POST'])
def form():
form = dynamic.process(LoginForm(), request.post)
if form.validate_on_submit():
return '<h1>Thanks</h1>'
return render_template("form.html", form=form)


Would someone be able to give the one-page documentation a quick scan and tell me how exactly this can be implemented. It will help me moving forward with using other modules too (relative beginner).



Thanks in advance.










share|improve this question






















  • How about this? stackoverflow.com/questions/28375565/…

    – Jessi
    Nov 15 '18 at 1:17















2















I guess this question can be interpreted more generally with help on how to implement custom Python Modules.



I am building a Flask Web App and trying to create a reasonably complex form that basically allows a user to add more fields on button click but still retaining the benefits of WTForms.



I have come across this module online: https://pypi.org/project/WTForms-Dynamic-Fields/



I am confused as to how I am supposed to implement the module.



It says to create an instance of the module before using the add_field() and add_validator() methods. Before then binding the form variable to the 'process()' method. I guess I am meant to include a JavaScript button but getting very confused as to how to do this.



As a simple example I am trying to implement it on this simple WTForm:



class LoginForm(FlaskForm):
username = StringField('username', validators=[InputRequired()])
password = PasswordField('password', validators=[InputRequired()])
dynamic = WTFormsDynamicFields()


The HTML form:



<form method="POST" action="url_for('form')">
form.csrf_token
render_field(form.username)
render_field(form.password)

<button onclick="dynamic.add_field('email', 'Email address', TextField)">Click Me!</button>




App.py:



@app.route('/form/', methods=['GET', 'POST'])
def form():
form = dynamic.process(LoginForm(), request.post)
if form.validate_on_submit():
return '<h1>Thanks</h1>'
return render_template("form.html", form=form)


Would someone be able to give the one-page documentation a quick scan and tell me how exactly this can be implemented. It will help me moving forward with using other modules too (relative beginner).



Thanks in advance.










share|improve this question






















  • How about this? stackoverflow.com/questions/28375565/…

    – Jessi
    Nov 15 '18 at 1:17













2












2








2








I guess this question can be interpreted more generally with help on how to implement custom Python Modules.



I am building a Flask Web App and trying to create a reasonably complex form that basically allows a user to add more fields on button click but still retaining the benefits of WTForms.



I have come across this module online: https://pypi.org/project/WTForms-Dynamic-Fields/



I am confused as to how I am supposed to implement the module.



It says to create an instance of the module before using the add_field() and add_validator() methods. Before then binding the form variable to the 'process()' method. I guess I am meant to include a JavaScript button but getting very confused as to how to do this.



As a simple example I am trying to implement it on this simple WTForm:



class LoginForm(FlaskForm):
username = StringField('username', validators=[InputRequired()])
password = PasswordField('password', validators=[InputRequired()])
dynamic = WTFormsDynamicFields()


The HTML form:



<form method="POST" action="url_for('form')">
form.csrf_token
render_field(form.username)
render_field(form.password)

<button onclick="dynamic.add_field('email', 'Email address', TextField)">Click Me!</button>




App.py:



@app.route('/form/', methods=['GET', 'POST'])
def form():
form = dynamic.process(LoginForm(), request.post)
if form.validate_on_submit():
return '<h1>Thanks</h1>'
return render_template("form.html", form=form)


Would someone be able to give the one-page documentation a quick scan and tell me how exactly this can be implemented. It will help me moving forward with using other modules too (relative beginner).



Thanks in advance.










share|improve this question














I guess this question can be interpreted more generally with help on how to implement custom Python Modules.



I am building a Flask Web App and trying to create a reasonably complex form that basically allows a user to add more fields on button click but still retaining the benefits of WTForms.



I have come across this module online: https://pypi.org/project/WTForms-Dynamic-Fields/



I am confused as to how I am supposed to implement the module.



It says to create an instance of the module before using the add_field() and add_validator() methods. Before then binding the form variable to the 'process()' method. I guess I am meant to include a JavaScript button but getting very confused as to how to do this.



As a simple example I am trying to implement it on this simple WTForm:



class LoginForm(FlaskForm):
username = StringField('username', validators=[InputRequired()])
password = PasswordField('password', validators=[InputRequired()])
dynamic = WTFormsDynamicFields()


The HTML form:



<form method="POST" action="url_for('form')">
form.csrf_token
render_field(form.username)
render_field(form.password)

<button onclick="dynamic.add_field('email', 'Email address', TextField)">Click Me!</button>




App.py:



@app.route('/form/', methods=['GET', 'POST'])
def form():
form = dynamic.process(LoginForm(), request.post)
if form.validate_on_submit():
return '<h1>Thanks</h1>'
return render_template("form.html", form=form)


Would someone be able to give the one-page documentation a quick scan and tell me how exactly this can be implemented. It will help me moving forward with using other modules too (relative beginner).



Thanks in advance.







python flask module flask-wtforms wtforms






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 14 '18 at 10:25









joester110joester110

213




213












  • How about this? stackoverflow.com/questions/28375565/…

    – Jessi
    Nov 15 '18 at 1:17

















  • How about this? stackoverflow.com/questions/28375565/…

    – Jessi
    Nov 15 '18 at 1:17
















How about this? stackoverflow.com/questions/28375565/…

– Jessi
Nov 15 '18 at 1:17





How about this? stackoverflow.com/questions/28375565/…

– Jessi
Nov 15 '18 at 1:17












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53297954%2fhow-to-use-wtforms-dynamic-fields-module-flask-python%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53297954%2fhow-to-use-wtforms-dynamic-fields-module-flask-python%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3