I've hit a problem with the Textarea component that I can't work out and suspect a bug.
I'm building a form in an ordered list. In one list item I have a digit textarea. It displays fine however when used in Firefox (3) the enter key does not work.
This is the code I'm using:
<form> <ol><li> <textarea style="width:300px;" dojoType="dijit.form.Textarea"></textarea> </li></ol> </form>
If I change the list to a table, tr and td's, it works and allows you to hit the enter key for new lines. In the list it will only wrap and expand but the enter key doesn't work...
In IE7 it works fine.
Any ideas?
Thanks,
Todd

I have the samer problem.
I have the samer problem.
When I use Zend Framework for form generation (class Zend_Dojo_Form_Element_Textarea), then i have samer problem in FireFox3.
The key Enter does not works.
If remove "dd" tag around html-code of dijit.form.Textarea trought FireBug, then Enter Key works well.
<dd>
<textarea id="formNodeEditBody" style="width: 300px;" name="body" type="text" required="1" dojoType="dijit.form.Textarea"></textarea>
</dd>