Constructing a wtforms' TextAreaField is something like this:

content = wtf.TextAreaField('Content', id="content-area", validators=[validators.Required()])

How can I specify the number of rows and columns associated with this textarea?

link|improve this question

55% accept rate
feedback

3 Answers

You are not supposed to do it in the place where you declare the widget. You have do it in the template. For eg:

{{form.content(rows=50,cols=100)}}
link|improve this answer
1  
Are you sure? It doesn't work for me. – Nick Rosencrantz Nov 4 '11 at 11:28
Me neither. There is some corner case which need resolving. – leonigmig Dec 21 '11 at 18:06
feedback

{{form.text(cols="35", rows="20")|safe}} is working

link|improve this answer
feedback

I looked at the code and found that Field class defines both __new__ and __init__. __new__ takes a bunch of *args and **kargs. So, you can just pass rows=x cols=y in your TextAreadField creation and it should work. I noticed that wtforms is creating a class called "UnboundField" for such cases, I don't know the implications of that as where this would cause problems, if any. But the next step of creating the TextAreaField are same. (That is control goes to __init__ call as before.)

link|improve this answer
That's what I thought too, but that doesn't work: "an unexpected keyword argument 'rows'" – Khnle Feb 8 '11 at 13:06
feedback

Your Answer

 
or
required, but never shown

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