Re: [Stripes-users] Empty requests parameters

2017-07-19 Thread Luis Tiago Rico
Hi, I agree with Rick last message, specially if you can only reproduce this problem in PROD environment as said. Just guessing but, sounds like some of your requests are going trough a load balancer / reverse proxy in PROD (like nginx) and there is url rewrite rule stripping down the parameters!

Re: [Stripes-users] List types and errors

2017-07-17 Thread Luis Tiago Rico
Hi. Haven't using stripes for a while now. But I would say on your form to loop your inputs and name them foo[i]. Also use annotations in action beans to validate as said before. Hope it helps writing this on my mobile phone Em 18/07/2017 12:30 da manhã, "Mike McNally"

Re: [Stripes-users] Getting users location

2017-07-09 Thread Luis Tiago Rico
You can also use HTML 5 location services from specs! Em 09/07/2017 6:34 da tarde, "Joaquin Valdez" escreveu: > I typically get the setting from the browser locale and language. > > Joaquin > > On Jul 9, 2017, at 11:18 AM, Heather and Jon Turgeon < >

Re: [Stripes-users] Advanced Field Error Handling

2013-01-03 Thread Luis Tiago Rico
Hi there, for html 5 attributes: Insted of using the Standard Tag Library%@ taglib prefix=stripes uri= http://stripes.sourceforge.net/stripes.tld; % Use DynAttr Tag Library%@ taglib prefix=stripes uri= http://stripes.sourceforge.net/stripes-dynattr.tld; % like stripes:text name=phone

Re: [Stripes-users] messages not showing after a redirect

2012-10-17 Thread Luis Tiago Rico
It works fine for me like this! getContext().getMessages().add(new LocalizableMessage(success.message)); return new RedirectResolution(RecentHistoryActionBean.class).addParameter(_eventName, current)*.flash(this);* Got it? Cheers 2012/10/17 Chris Cheshire cheshira...@gmail.com Uhh according

Re: [Stripes-users] Strange bug with stripes forms - all hidden inputs with same names are duplicated on validation error.

2012-02-20 Thread Luis Tiago Rico
Hi to all, I can confirm the Iwao solution, I allways used that! []'s 2012/2/20 Iwao AVE! haraw...@gmail.com Hi, Thank you for the feedback! Just for future reference (as I cannot think of any practical use case), if you really need to use Stripes hidden tags instead of plain ones, you

Re: [Stripes-users] Checkboxes

2012-02-08 Thread Luis Tiago Rico
You can also use: stripes:checkbox name=stringProperty value=A/ stripes:checkbox name=stringProperty value=B/ stripes:checkbox name=stringProperty value=C/ and in ActionBean String[] stringProperty; ...with getters setters! 2012/2/8 Marcus Kraßmann m...@syn-online.de Am 08.02.2012 00:06,