Login Register

Value attribute of SimpleTextarea not working

[editor: moving to the appropriate forum…]

The dojo source says that this should work for a SimpleTextarea

<textarea dojoType="dijit.form.SimpleTextarea" name="foo" value="bar" rows=30 cols=40/>

That doesn't work for me... I have to use the following

<textarea dojoType="dijit.form.SimpleTextarea" name="foo" rows="30" cols="40">bar</textarea>

Is this a known bug or do I need to do something differently?