Re: Limiting text length in rich text area widget

2009-01-06 Thread Arthur Kalmenson
Try adding a KeyboardListener that grabs the text (not HTML formatted text), checks its length and disables keyboard entry if it's over a certain amount. -- Arthur Kalmenson On Sun, Jan 4, 2009 at 2:44 AM, falcon_whiz wrote: > > Hi, > I want to limit the text length inside the rich text area

Limiting text length in rich text area widget

2009-01-03 Thread falcon_whiz
Hi, I want to limit the text length inside the rich text area widget provided by GWT. But there is no implementation of a method like maxLength in this widget. I have tried implementing it using substring inside keyboardlistener but the problem is that I lose all the HTML formatting. Can anybody