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?
|
feedback
|
|
You are not supposed to do it in the place where you declare the widget. You have do it in the template. For eg:
| |||||||
feedback
|
|
I looked at the code and found that Field class defines both | |||
feedback
|