Hi I have been trying to pepopulate a textareafield using something like this in the template.

{{form.content(value="please type content")}}

This works when the field is textfield primarily because the html accepts value for <input type="text"> but the same does not work for textarea... Can someone please help me with this?

link|improve this question

78% accept rate
Alice, what is form in this context -- is it a WTForms.Form object or is it something else? – Sean Vieira Feb 25 '11 at 15:56
It is a WTForms.Form object Sean! – Alice Feb 25 '11 at 17:13
feedback

4 Answers

up vote 1 down vote accepted

For textarea widgets, you set the default content with the default argument in your field constructors.

class YourForm(Form):
    your_text_area = TextAreaField("TextArea", default="please add content")

Then when you render:

{{form.content()}}

WTForms will render the default text. I have not been able to find a way to specify default text for the text area at render time.

link|improve this answer
Thanks Sean! But I need to do it in the template. It is something like an edit blog link.When you click the edit button against any blog, it should present a form with the title in the textfield(which is done using the value parameter) and the content of the blog in the textarea field. – Alice Feb 26 '11 at 1:15
Hi ,The form defintion, the view function and the html of the form can be viewed here:- pastebin.com/QC4MC84B – Alice Feb 26 '11 at 1:37
feedback

You can do it before rendering, something like:

form.content.data = 'please type content'

I'm new to WTForms though.

link|improve this answer
feedback

Alice there seems to be support built into the form widget to do what you are after but you are right it doesn't work at the moment.

Sean and hilquias post decent work arounds which do work. This is the form (yuk yuk) you might try

 else:
        form.title.data=blog.title
        form.blogdata.data=blog.blogdata
    return render_template('editblog.html',form=form)
link|improve this answer
feedback

In a Textarea you will need to use innerHTML or html() if you use jquery.

in your context should be:

form.content.innerHTML = "please type content";

//using jquery
$('#element').html("please type content");

Hope it helps.

link|improve this answer
WTForms is a server-side Python library for rendering form HTML -- jQuery will not help in this context unfortunately. – Sean Vieira Feb 25 '11 at 21:02
1  
Thanks for trying to help out though! – Alice Feb 26 '11 at 1:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.