Re: Setting selected with s:select tags

2010-04-26 Thread Kartik Kumar
: Setting selected with s:select tags From: krishnan.1...@gmail.com To: user@struts.apache.org Hi Struts gurus, I am have an object level attribute that is selected from the s:select tag. s:select key=search.criterion name=searchCriterion list=#{'': 'Select One

Re: Setting selected with s:select tags

2010-04-24 Thread Denis Cabasson
Hi Kartik, Remove the attribute value from your s:select tag, and in your action, preset the value of your attribute actionStatus (on your Action class) to OPEN or CLOSED. At least, it is working in my case. Let us know if it is not working for you that way, and I will put together a simple

RE: Setting selected with s:select tags

2010-04-24 Thread Martin Gainty
facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. Date: Fri, 23 Apr 2010 17:11:24 -0700 Subject: Setting selected with s:select tags From: krishnan.1...@gmail.com To: user@struts.apache.org Hi Struts gurus, I am have

Setting selected with s:select tags

2010-04-23 Thread Kartik Kumar
Hi Struts gurus, I am have an object level attribute that is selected from the s:select tag. s:select key=search.criterion name=searchCriterion list=#{'': 'Select One', 'bean.attributeValue':'bean.attributeValue', 'abc':'abc'} required=true onchange=showSearchCriterionField() / If

Re: Setting selected with s:select tags

2010-04-23 Thread Kartik Kumar
I have some thing like this s:iterator value=actionItems tr tds:property value=creatorName //td tds:property value=assignedTo //td tds:property value=creationDate //td tds:property value=dueTo //td tds:property