Re: key property of s:checkbox tag

2008-03-24 Thread Emil.I
Ohh man guess what i used %{property} for label element and everything is fine. newton.dave wrote: > > --- "Emil.I" <[EMAIL PROTECTED]> wrote: >> >> >> skillCode being the property of object in a set whihc i iterate over, >> doesn't work

Re: key property of s:checkbox tag

2008-03-24 Thread Emil.I
If i put: skillCode being the property of object in a set whihc i iterate over, doesn't work. Randy Burgess-3 wrote: > > Have you tried this syntax? > > > > Regards, > Randy Burgess > Sr. Web Applications Developer > Nuvox Communications > >

Re: key property of s:checkbox tag

2008-03-24 Thread Emil.I
So can i nest s:property within. Eg.: the preceeding doesn't work. Is there anyway not including the solution, where you put s:property tag beside s:checkbox, but actually setting the key property of s:checkbox tag with skillCode? Emil.I wrote: > > Hello, > i iterate through

Key property

2008-03-23 Thread Emil.I
Hello, i iterate through a set and for 'key' i want to use the property of an iterable element. eg: skillCode is a string property of Skill object and i want it to be assigned to skill property of the s:checkbox tag. What is the syntax? -- View this message in context: http://www

ModelDriven action with action property

2008-03-19 Thread Emil.I
Hello i have a textfield with the name="firstName" and a textfield with the name="address.city" etc.. the action is model driven where firstName is the property of model. Since address is a property of action (not property of model) how come address.city does not get set it doesn't eve go to the

Re: Struts 2 Spring sitemesh hangs on tomcat 6 and jboss

2008-02-08 Thread Emil.I
the trick before the call.:-) Emil.I wrote: > > Hello, > You guys had this, happen when i deploy my war file to tomcat, the > application hangs seems waiting for > reply forever. I deployed it on jboss ok for a while, then again after a > while just hangs. Increasing memory >

Struts 2 Spring sitemesh hangs on tomcat 6 and jboss

2008-02-04 Thread Emil.I
Hello, You guys had this, happen when i deploy my war file to tomcat, the application hangs seems waiting for reply forever. I deployed it on jboss ok for a while, then again after a while just hangs. Increasing memory in tomcat to 512 did not help. I got some params interceptor errors (setting

Re: properties at times not found

2007-06-20 Thread Emil.I
Hello, i had a similar problem, u may need a concrete implementation for your property something like: private List stories = new LinkedList(); public List getStories() { return stories; } and make sure to override toString() in your Story class... don't know what else to tell ya. Good Luck.

action mappings

2007-06-20 Thread Emil.I
Hello, I got an exception that my action mappings cannot be located... eg. namespace /program action name viewInvoices. - [UNKNOWN LOCATION] ... etc. so i gave my action an incorrect name eg. (viewInvoice) and guess what my action was suddenly located, even tough I triple checked that the then