This Works
dojoType="dijit.form.TextBox" maxLength="25"
This Does Not.
dojoType="dijit.form.Textarea" trim="true" propercase="true" maxLength="25"
How can you specify maxlength for a textarea ?
This Works
dojoType="dijit.form.TextBox" maxLength="25"
This Does Not.
dojoType="dijit.form.Textarea" trim="true" propercase="true" maxLength="25"
How can you specify maxlength for a textarea ?
I have the same question
This use to work with the old widget.psTextarea but seemingly does not work with dijit.form.Textarea...what gives?
Any solution?
Any solution?
I'm trying to use the event onkeyup to check the text length, but it doesn't work!
This is my list try:
dojo.connect(this.infoField.focusNode, "onkeyup", dojo.hitch(this, this.changeInfoField));But it seems that the event is never fired.