Re: 4.1.1 upgrade to 4.1.2 async listener no longer works

2007-07-12 Thread Jesse Kuhnert
Thanks for the jira issue. Sorry I've been really busy trying to get some normal contact stuff completed. On 7/4/07, Paul Stanton <[EMAIL PROTECTED]> wrote: I've figured out why the exception is being thrown: my formSubmit method requires the submission control (Submit or LinkSubmit) to have s

Re: 4.1.1 upgrade to 4.1.2 async listener no longer works

2007-07-04 Thread Paul Stanton
I've figured out why the exception is being thrown: my formSubmit method requires the submission control (Submit or LinkSubmit) to have set the tag and selected attributes/parameters. Now, my async button comes in without those set and the null pointer is thrown. So I've added an "if null retu

Re: 4.1.1 upgrade to 4.1.2 async listener no longer works

2007-07-03 Thread Paul Stanton
Should I log this in Jira Jesse? Paul Stanton wrote: Thanks Jesse, I've changed it to @EventListener(targets = {"myButton"}, events = "onclick", async = true, autoSubmit = false) public void showMyDialog() and the same exception is thrown. Any more info? Paul. Jesse Kuhnert wrote: Co

Re: 4.1.1 upgrade to 4.1.2 async listener no longer works

2007-07-03 Thread Paul Stanton
Thanks Jesse, I've changed it to @EventListener(targets = {"myButton"}, events = "onclick", async = true, autoSubmit = false) public void showMyDialog() and the same exception is thrown. Any more info? Paul. Jesse Kuhnert wrote: Components implementing IFormComponent that are targeted

Re: 4.1.1 upgrade to 4.1.2 async listener no longer works

2007-07-02 Thread Jesse Kuhnert
Components implementing IFormComponent that are targeted with an @EventListener do now have their surrounding forms submitted automatically as part of the async request. If there is something in your logic that doesn't need/want this to happen you can set the autoSubmit = false parameter in the a

4.1.1 upgrade to 4.1.2 async listener no longer works

2007-07-02 Thread Paul Stanton
Hi, I've upgraded to 4.1.2 from 4.1.1 and am getting the following when I try to load one of my Dojo Dialogs (async). It seems tapestry is trying to call getPage with a null page name, but I'm not sure why formSubmit is being called at all (unless it's part of a rewind?) The trigger is bei