Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Fixed
-
5.0.15
-
None
-
None
Description
It would be nice, is some cases, to have Tapestry map query parameters to event handler method parameters, rather than path info. This is typically about the Ajax case, where it is more reliable (and easier) to take a URL and add query parameters to it than it is to add extra path info.
public void onActionFromAjaxWidget(@QueryParameter("action") String widgetAction, @QueryParameter("count") int count)
{ .... }