Re: Tap 4.1.1 TextField Ajax question

2007-04-30 Thread Jesse Kuhnert
Yes, 4.1.2 requires ognl 2.7-SNAPSHOT. http://howardlewisship.com/repository/ognl/ognl/ On 4/30/07, Tony Nelson <[EMAIL PROTECTED]> wrote: I would be very happy to use Tapestry 4.1.2 but I run into a problem every time I try the latest snapshot: java.lang.NoClassDefFoundError: ognl/enhance/Ex

Re: Tap 4.1.1 TextField Ajax question

2007-04-30 Thread Tony Nelson
I would be very happy to use Tapestry 4.1.2 but I run into a problem every time I try the latest snapshot: java.lang.NoClassDefFoundError: ognl/enhance/ExpressionAccessor I assume this related to the OGNL stability you mention. Is there a newer beta of OGNL I grab from somewhere to get movi

Re: Tap 4.1.1 TextField Ajax question

2007-04-30 Thread Jesse Kuhnert
You want to use targets="" . Elements = "" is strictly for pure html elements and not tapestry components. If you use the 4.1.2-SNAPSHOT version it will also automatically figure out which form your targeted components are attached to and submit that as part of the event so that you can do things

Tap 4.1.1 TextField Ajax question

2007-04-30 Thread Tony Nelson
I am attempting to use @EventListener to submit the value of a TextField onChange. So, I have an input defined: In the page class I have: @Component(bindings = {"validators=validators:required"}) public abstract TextField getMyField(); @EventListener(events={"onchange"}, ele