I am unable to set the maximum length for a GWT TextArea. Could someone help me achieve this in GWT?
TextArea t1 = new TextArea();
t1.setMaxLength(300); // This method doesn't exist. How do I do this?
|
I am unable to set the maximum length for a GWT TextArea. Could someone help me achieve this in GWT?
|
|||||
|
|
Its cause maxLength is a html5 feature, so it would not work in older browsers. You have to doit by yourself. Just add a keyPresshandler and count the length of the text in the textarea and cut the text if its to long. |
|||||||||||
|
|
Gal's answer is right with just one correction :
The second parameter is a string. This worked for me. |
||||
|
|