T5.3 RichtextEditor

2011-11-19 Thread TG
I found this https://github.com/hlship/tapx/. I am trying to get it to work on GAEJ. But I got this error - SEVERE: Processing of request failed with uncaught exception: Unable to resolve 'tapx/richtexteditor' to a component class name. I got T5.3RC2. Any idea? How do I set it up besides copying

Re: fckeditor for Tapestry 5.3

2011-11-19 Thread TG
I found this https://github.com/hlship/tapx/. I will let everyone know if it works for me on GAEJ. -- View this message in context: http://tapestry.1045711.n5.nabble.com/fckeditor-for-Tapestry-5-3-tp4983201p5007540.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: regexp validatation problem

2011-11-19 Thread Thiago H. de Paula Figueiredo
On Fri, 18 Nov 2011 21:08:12 -0200, Barry Books wrote: I'm having a problem with regexp validation. If I put zip-regexp=^\\d{5}(-\\d{4})?$ Have you tried ^\d{5}(-\d{4})?$ ? The double backslashes are need in Java code to escape the '\' character, but isn't needed outside code. -- Thiago H