RE: sj:autocompleter dependable

2015-08-26 Thread fea jabi
I tried doing this onSelectTopics of first autocompleter to select value of the second autocompleter but didn't work. Any suggessions? First autocompleter sj:autocompleter onChangeTopics=publisherDescChange onSelectTopics=publisherDescSelect . / Second autocompleter

Re: Struts 2.5.Beta1 and samples

2015-08-26 Thread Chris
Yes we are. thank you for mentioning.I didn't. But , yes, it's about https://github.com/apache/struts-examples Regards Le Mercredi 26 août 2015 6h47, Lukasz Lenart lukaszlen...@apache.org a écrit : Strange, I don't see such problems. Are we talking about struts-examples?

Re: s:hidden generating invalid html for css_xhtml theme

2015-08-26 Thread allanjackson
Ah, thanks! I was using 2.3.20. Glad to hear the issue is already fixed. From: Lukasz Lenart [via Struts] ml-node+s1045723n5718108...@n5.nabble.commailto:ml-node+s1045723n5718108...@n5.nabble.com Date: Tuesday, August 25, 2015 at 11:56 PM To: Allan Jackson

Re: Struts 2.5.Beta1 and samples

2015-08-26 Thread Lukasz Lenart
I cannot reproduce your problem. Just cloned a fresh copy from GitHub, started the first example - annotations and everything works. Please be aware that there is no more 'develop' branch, please use 'master' branch Here is the dependency list [INFO] The following files have been resolved:

[ANN] New Security Bulletin

2015-08-26 Thread Lukasz Lenart
The Apache Struts group is pleased to announce that a new security bulletin was published - S2-025 - http://struts.apache.org/docs/s2-025.html Thanks to Taki Uchiyama from JPCERT/CC who reported two potential XSS vulnerabilities available in older versions of The Apache Struts 2. Please read the

RE: sj:autocompleter dependable

2015-08-26 Thread fea jabi
As mentioned earlier have 2 autocompleters with same list of Managers. Only difference being the Manger.description is shown as drop down in one and Manager.code is shown in the drop down in another. In the first autocompleter when Manager.description is selected it should automatically

RE: OGNL error --- Unexpected Exception caught setting ... on 'class.........

2015-08-26 Thread fea jabi
private String[] publisherName; //why is this an Array of String instead of String publisherName; I had it as String but after seeing the error I modified it to String[] and tried that. MGwhere are you setting the publisherName?.. in constructor of Action class? I did

RE: sj:autocompleter dependable

2015-08-26 Thread Martin Gainty
MGfollow the example to the letter From: zy...@hotmail.com To: user@struts.apache.org Subject: RE: sj:autocompleter dependable Date: Wed, 26 Aug 2015 13:21:13 -0400 I tried doing this onSelectTopics of first autocompleter to select value of the second autocompleter but didn't work. Any

OGNL error --- Unexpected Exception caught setting ... on 'class.........

2015-08-26 Thread fea jabi
Have a Publisher class with attributes Publisher ---class name code Action class private String[] publisherName; ListPublisher publishers= new ArrayListPublisher(); getters and setters for the same too in it. JSP sj:autocompleter id=publisherNameId name=publisherName

RE: OGNL error --- Unexpected Exception caught setting ... on 'class.........

2015-08-26 Thread Martin Gainty
From: zy...@hotmail.com To: user@struts.apache.org Subject: OGNL error --- Unexpected Exception caught setting ... on 'class. Date: Wed, 26 Aug 2015 19:42:36 -0400 Have a Publisher class with attributes Publisher ---class name code Action class private String[]

RE: sj:autocompleter dependable

2015-08-26 Thread fea jabi
Thanks, for trying to help me on this. I did add the subscribe java script functions as you've suggested. Still not working. Please need help. sj:autocompleter id=publisherNameId name=publisherName list=%{publishers} listValue=name listKey=code listLabel=code