Re: javassist error with Tapestry 5.1.0.5 and JBoss 4.2.3GA

2010-07-09 Thread Halil Karakose
Actually this is the default Appfuse User class. And the class has no-arg constructor. I've been debuggin jboss now. During jboss startup, javassist.util.proxy.ProxyFactory.setField() method throws the exception in the following highlighted line. private void setField(String fieldName

Re: Realize operations on "blur" from a textfield

2010-07-09 Thread Claude Dubois
I have found on Jumpstart Doublenegative a mixin which matches my needs. It's the ZoneUpdater mixin by Inge Solvoll, and it is very easy to setup. Here is the source code of the ZoneUpdater : http://tinybits.blogspot.com/2010/03/new-and-better-zoneupdater.html Here is the demonstration in

Re: javassist error with Tapestry 5.1.0.5 and JBoss 4.2.3GA

2010-07-09 Thread Halil Karakose
After a jboss restart and clean deploy, the application is deployed fine. Below is what I did: - javassist.jar is removed from JBOSS_HOME/server/default/lib folder. - javassist-3.9.0-GA.jar is put inside JBOSS_HOME/server/default/lib folder. - javassist-3.9.0-GA.jar is removed from WEB

T5: Beaneditor Annotations get ignored with lazy Associations

2010-07-09 Thread Andreas Pursian
Dear List members, I experienced a strange problem while combining Beaneditor annotations with objects fetched through a lazy OneToOne association. Beaneditor annotations on setter methods like (@DataType(value="longtext") or @NonVisual) gets ignored when the OneToOne association is lazy fetched (

Re: javassist error with Tapestry 5.1.0.5 and JBoss 4.2.3GA

2010-07-09 Thread Christian Edward Gruber
I upgraded our organization to 3.12.0.GA javassist and a lot of issues went away. Still a few issues, and I think the guy who patched it for us submitted that patch to javassist, but it's light-years less problematic than 3.9. Christian On Jul 9, 2010, at 5:37 AM, Halil Karakose wrote: A

Re: Page component tree model

2010-07-09 Thread Juan Isern
Thanks for your reply Thiago. Unfortunately, correct me if I'm wrong, the ComponentModel (as of version 5.1.0.5, that I'm using) only returns the components that were annotated with @InjectComponent or @Component in the containing page or parent component, that makes it of little use :( I'm sure

Re: Using PageResponseRenderer.render() in T5.2?

2010-07-09 Thread Kalle Korhonen
Sorry to be a pest, but how could I find a champion to apply the patch for TAP5-1201? I understand Howard's busy and his time is probably better spent on bigger issues than this, but I hope that some other committer would be able to pick this up and apply the one-line change that would restore func

Re: FCKEditor Ajax Form Submit

2010-07-09 Thread raulmt
Thiago, this snippet, at least in T5.1, does not always work. Tapestry also "listens" the submit event of the form (in fact, it replaces the onsubmit property of the form). So, if you have bad luck, the submission of the form will ocurr before FCK can update the linked field. To ensure that FCK u