Re: Question about ApplicationInitializerFilter

2008-05-04 Thread Howard Lewis Ship
You can see that there are a few issues in JIRA to make the IoC stuff (even) more refactoring-safe. On Sun, May 4, 2008 at 11:06 PM, Michael Gerzabek <[EMAIL PROTECTED]> wrote: > Thank you Howard, > > It was a typo after a refactoring (DatabaseManager |-> > DatabaseUpdateManager). I didn't check

Re: Question about ApplicationInitializerFilter

2008-05-04 Thread Michael Gerzabek
Thank you Howard, It was a typo after a refactoring (DatabaseManager |-> DatabaseUpdateManager). I didn't check the update textual occurences in eclipse. Lewis Ship schrieb: The most common case for this is that the module class defining the service, or the module class containing the contr

[T4.1.5] - Inherited annotations fail

2008-05-04 Thread Henrik Schlanbusch
Hi I see there has been a lot of activity on this before, and the issue seems to have been resolved, still I experience this problem in 4.1.3 and 4.1.5: Exception: Error: An error occured processing annotation @org.apache.tapestry.annotations.InjectState(value=bite-visit) of public abstract n

Re: Form event handler not being called

2008-05-04 Thread Toby Hobson
Fixed it! Our designer added a form to our border.tml so we had a nested form which messed things up. Btw ... I believe the form component fires onSuccess and onSubmit events, onSuccess only fires if the form has passed validation Toby - Original Message From: Toby Hobson <[EMAIL PROT

Re: Form event handler not being called

2008-05-04 Thread Toby Hobson
I tried onSuccessFromEditPhoto() but that doesnt work either. Something is happening though because the url changes and adds a massive query parameter Toby Sent using BlackBerry® from Orange -Original Message- From: "Thiago HP" <[EMAIL PROTECTED]> Date: Sun, 4 May 2008 12:09:00 To:"T

Re: Form event handler not being called

2008-05-04 Thread Thiago HP
On Sun, May 4, 2008 at 10:44 AM, Toby Hobson <[EMAIL PROTECTED]> wrote: > public void onSubmitFromEditPhoto() { > ... > } > @OnEvent(value="submit", component="editPhoto") > public void update() { > ... > } The form component does not fire a "submit" event, firing a "success" one instead.

Re: T5: Persistence pains

2008-05-04 Thread Thiago HP
On Sun, May 4, 2008 at 3:03 AM, Ivan Dubrov <[EMAIL PROTECTED]> wrote: > Right. Most annoying things for us about "session" and "flash" scopes was > that they don't work in several tabs. And "client" can't hold too much data. Maybe you're having an issue with the statelessness of HTTP, not with

Form event handler not being called

2008-05-04 Thread Toby Hobson
Can anyone see anything which is wrong with this code: EditPhoto.tml: EditPhoto.java public void onSubmitFromEditPhoto() { ... } my event handler is not being called, I have also tried @OnEvent(value="submit", component="editPhoto") public void update() { ... } but this doesn't wo