Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?
share|improve this question
What do you mean you are unable to set the max length ? What exactly is the problem, you havent said much except you are having a problem. – mP. Aug 8 '11 at 10:44
Hi, I want to restrict user not enter more than 300 characters, I looked in to api, there is not method which can does for me. how i can achieve this in gwt – Babs Aug 8 '11 at 12:04

3 Answers

up vote 2 down vote accepted

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.

share|improve this answer
Hi, thanks for reply, but when i copy content from word file (which has more than 300 chars) and paste on text area, even this time also it should not allow. please help me to fix this. – Babs Aug 8 '11 at 13:24
Have you test that it doesn't work with keyPressHandler. After all 2 keys are pressed on copy paste. Ahh but not when you use the context menu. Seems you have to use a JSNI method to implement the paste event by yourself: quirksmode.org/dom/events/cutcopypaste.html – Andreas Köberle Aug 8 '11 at 13:48
I used all handlers, which actually works but not when i cut copy paste. is there way to do this. thanks – Babs Aug 8 '11 at 14:08
As I mention in the last comment you have to create a JSNI function that adds the eventListener for the paste event in pure JavaScript. – Andreas Köberle Aug 8 '11 at 14:14
Hi, Do you have any sample JSNI code which can do this, please help me thanks11 – Babs Aug 8 '11 at 14:28
show 2 more comments

Gal's answer is right with just one correction :

t1.getElement().setAttribute("maxlength", "100");

The second parameter is a string. This worked for me.

share|improve this answer

You can set it as such:

t1.getElement().setAttribute("maxlength", "100");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.