RE: sj:autocompleter dependable

2015-08-27 Thread Martin Gainty
based on your other emails it appears you are missing your Struts action class you are also probably missing struts.xml which defines the Struts Action class and results and any configuration params whats more the jsp you are using probably does not have sj=/struts-jquery-tags declaration so

Re: How to access a map in jsp

2015-08-27 Thread Yaragalla Muralidhar
i have added methods to get the primitive integers as strings in dto. that solved my problem. thanks Christoph. *Thanks and Regards,* Muralidhar Yaragalla. *http://yaragalla.blogspot.in/ http://yaragalla.blogspot.in/* On Thu, Aug 27, 2015 at 2:56 PM, Christoph Nenning

Re: Struts 2.5.Beta1 and samples

2015-08-27 Thread Chris
Thank you for help and answers Le Mercredi 26 août 2015 16h09, Chris christal...@yahoo.fr a écrit : Thanks, It works now. I can't say why Also with D:\NetbeansLibs\log4j beta\log4j-api-2.3.jar Le Mercredi 26 août 2015 15h52, Lukasz Lenart lukaszlen...@apache.org a écrit

How to access a map in jsp

2015-08-27 Thread Yaragalla Muralidhar
Hi, the following is the code in action class //_ private ListAntibioticDto antibiotics; private ListOrganismType organismTypes; private MapString, ListString oaMap; @Override public String execute() throws Exception { try{

Re: How to access a map in jsp

2015-08-27 Thread Christoph Nenning
What are the types of antibioticId and organismTypeId ? Are they primitive integers/longs? I would add methods to DTOs to get them as Strings. I suggest to store the list in a pageScope variable, to make the expression better readable. There should be no dot before the bracket. You wrote