I've tried the following, all without success.
@OnEvent(value = EventConstants.NODE_SELECTED)
Link nodeSelected(Integer nodeId) {
company.setCompany((Company) session.get(Company.class, nodeId));
Link link = pageRenderLinkSource.createPageRenderLink(Index.class);
return link;
}
@OnEvent(value = EventConstants.NODE_SELECTED)
Class<?> nodeSelected(Integer nodeId) {
company.setCompany((Company) session.get(Company.class, nodeId));
return Index.class;
}
@OnEvent(value = EventConstants.NODE_SELECTED)
Object nodeSelected(Integer nodeId) {
company.setCompany((Company) session.get(Company.class, nodeId));
return treeZone.body;
}
Does anybody have any suggestions on how to get the tree grid to change the
content?
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/TreeGrid-ActionLink-tp5497839p5497889.html
Sent from the Tapestry - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]