To clarify, onActivate() is an event handler method, and
@RequestParameter is only honored for event handler methods.
beginRender(), afterRender(), etc. are render phase methods,
@RequestParameter would not work there.
On Wed, Aug 8, 2012 at 7:03 PM, Lance Java wrote:
> You can also use @RequestP
You can also use @RequestParameter on parameters in render phase methods.
eg
void onActivate(@RequestParameter("foo") String foo) { ... }
Normal tapestry coercion rules apply for types
On Wed, 08 Aug 2012 16:02:00 -0300, Sam.Roberts
wrote:
I have a page that I am linking to from outside (a different webapp) to
Tapestry and I want to pass auth data and some other information along
via POST data rather than GET data, but I can't really figure out how to
access the POST da
he closest answer to this that I've found by searching is from 2006 and
refers to HiveMind, which is certainly not up to date.
Thanks in advance.
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/Tapestry-get-Post-Data-tp5715170.html
Sent from the Tapestry - User maili