Re: Strus 2 populate select dynamically

2011-02-04 Thread tito
If you do not like the screen to be refreshed/reloaded.. you can use ajax..perhaps with jquery.It will be soothing for the users of the screen. regards, Tito Cheriachan http://www.titocheriachan.com ___ 10 litres of water is required to produce a s

Strus 2 populate select dynamically

2011-02-04 Thread Alfredo Manuel Osorio Martinez
What's the best approach to populate a select box dynamically? Imagine I need select boxes for the following fields (vehicle): Make Model Year Each of them are linked. If I select Make model should refresh and so for model and year. I was thinking about using tag to render the outp

Re: Autocompleter allows more characters than maxlength value.

2011-02-04 Thread Dave Newton
Not sure how that's integrated into the Dojo stuff; you'll probably have to dig, w/ the understanding it's an *old* (0.4.3?) version of Dojo. Another reason why the Dojo plugin is deprecated. Dave On Fri, Feb 4, 2011 at 12:14 PM, Bruno wrote: > Hey guys. > > I'm using a auto completer as descri

Autocompleter allows more characters than maxlength value.

2011-02-04 Thread Bruno
Hey guys. I'm using a auto completer as described down below: I've set a maxlength, but it still allows the user to input more than 32 characters. Appreciate any help you can give. Thanks -- Bruno Morelli Vargas Mail: brun...@gmail.com Msn: brun...@hotmail.com Icq: 165055101 Skype: morell

Struts2 @ Facebook

2011-02-04 Thread Johannes Geppert
For all facebook users I have created a Struts2 facebook site for sharing news and informations about struts2. http://www.facebook.com/pages/Struts2-Users/103890046351798 Have Fun Johannes - --- web: http://www.jgeppert.com twitter: http://twitter.com/jogep -- View this message in cont

com.liferay.util.bridges.mvc.MVCPortlet

2011-02-04 Thread Frans Thamura
hi all anyone have test Liferay IDE, just curious, can we use struts2 there? the MVCPOrtlet standard is com.liferay.util.bridges.mvc.MVCPortlet anyone play around with this? F - To unsubscribe, e-mail: user-unsubscr...@struts.

RE: S2 Action Setter Not Called

2011-02-04 Thread Martin Gainty
/** * Set a override map containing key -> values that takes precedent when doing find operations on the ValueStack. * * See the unit test for ValueStackTest for examples. * @param overrides overrides map. */ //best not to use Map when you want to push a browser obje

Re: S2 Action Setter Not Called

2011-02-04 Thread li wei
the problem is that you pushed a HashMap on the ValueStack's root. if you do that, all the values will be populated to the HashMap, not your action class you can try this code to fix it. ActionContext.getContext().put("browser", userSession.getBrowser()); (2011/02/04 17:12), Rubens Gomes

RE: S2 Action Setter Not Called

2011-02-04 Thread Rubens Gomes
Okay. I found what is causing the setters not to be called. I have an interceptor called ValueStackInterceptor (which is called prior to ParametersInterceptors) that is placing a String variable "browser" on the stack (please, see code below). If I comment out the line that places this varia