Re: About event handling in Layout component

2010-04-23 Thread Josh Canfield
> What would be the right pattern If I have something like... > > PageA > - Layout > - Button > > PageB > - Layout > - OtherButton PageA { @Component private Layout layout; Object onButtonEvent(String eventArg) { return layout.handleButtonEvent(eventArg); } } PageB { @Component

Re: Add parameter to a generated redirect link

2010-04-23 Thread Josh Canfield
My first thought would be to handle onFailure and return the Link with the parameters added. @Inject private PageRenderLinkSource _linkSource; Object onFailureFromMyForm() { final Link link = _linkSource.createPageRenderLink(Index.class); link.addParameter("intemno", "1251092");

GridPager sometimes fails to jump to chosen page

2010-04-23 Thread Szemere Szemere
We're getting occasional reports from users that the grid pager does not allow them to jump to particular pages. For example, after the page loads, user clicks on page 5 (out of 6 pages), but then clicking on page 4 keeps them on page 5. Has anyone else experienced this, or have a suggestion as to

Re: Google App Engine and Tapestry 5.1.0.x Series

2010-04-23 Thread Christian Edward Gruber
We are now using T5.2 snapshot on GAE without modification. Christian. On Apr 23, 2010, at 10:22 AM, Niclas Meier wrote: Hi, I gathered some experience with tapestry the last 18 Month and I am very satisfied with Tapestry. But at this moment I have quite an issue with a new project. I cho

Google App Engine and Tapestry 5.1.0.x Series

2010-04-23 Thread Niclas Meier
Hi, I gathered some experience with tapestry the last 18 Month and I am very satisfied with Tapestry. But at this moment I have quite an issue with a new project. I chosse Tapestry for a new website project which shall be deployed into the Google App Engine (SDK v1.3.2). But I have a couple of

Res: About event handling in Layout component

2010-04-23 Thread Everton Agner
It's not the exact subject, but this reminded me of a problem I had a while ago related to Layout and Page's Forms submission events. If the Layout component has a Form component (for whatever reason), every Page injected into it needs to handle their Form submission lifecycle by the explicit F

Res: [T5.1] How to add a Message Catalog to a Service

2010-04-23 Thread Everton Agner
Oh well... thanks for the reply, Howard. For now I will use the page's catalog, since the service is used only in one page. I'll refactor later. Thanks :) - Everton De: Peter Stavrinides Para: Tapestry users Enviadas: Sexta-feira, 23 de Abril de 2010 5:03:

Re: [T5.1] How to add a Message Catalog to a Service

2010-04-23 Thread Peter Stavrinides
I also required this a while back, but found not enough of the API was available to do what I wanted... I opened up a jira back then: https://issues.apache.org/jira/browse/TAP5-838 Will this make it into 5.2? Cheers, Peter - Original Message - From: "Howard Lewis Ship" To: "Tapestry u