> 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
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");
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
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
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
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
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:
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