Ken,

Its not clear what you're asking for.

* If you want to know how to add URL parameters to a stripes:link tag,  
you can nest one or more stripes:param tags within it and the  
resulting URL will contain those params.

* If you're expecting URL parameters to be bound to a property on an  
action bean, but they're not getting bound, check that:
- The property in question has a public setter
- The request param is properly named to map to the property
- If you're using the Stripes security feature called "strict  
binding", check that your setup will actually allow that property to  
be bound

(You can turn on debug logging for Stripes to monitor binding activity).

* If you just want access to raw URL parameters, you can access them  
via HttpServletRequest.getParameter(). The HttpRequest is available  
via ActionBean.getContext().

Hope this helps.

Chris.

On Oct 9, 2008, at 2:26 PM, Ken Barnes wrote:

> Is there any simple way to include all parameters to a request from  
> a link tag.
> I want to have the user select the link, hit a predefined function  
> and return.
> I can hit the right function but I dont have any parameter. Thanks  
> in advance
>
>
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's  
> challenge
> Build the coolest Linux based applications with Moblin SDK & win  
> great prizes
> Grand prize is a trip for two to an Open Source event anywhere in  
> the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> Stripes-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/stripes-users


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to