Re: submit s:iterator list

2009-05-26 Thread Luis Medina
Use a s:textarea tag insted of an html input

s:textarea name=demandRequest[%{#stat.index}].comments value=%{comments}
 /

On Tue, May 26, 2009 at 11:01 AM, tutul shubhrakarma...@hotmail.com wrote:


 Hi,

 Does anyone knows how I can submit a list back to the action??
 I have a ListDemandRequest that I am displaying in the jsp. DemandRequest
 has Id, status, comments. Some of the fields in it are pre-populated (id)
 but some of them will be added by the user (comment, status). I have it
 send
 it back to the action where I am trying to access the list back to get the
 new fields user has entered. here is a snippet of code
 s:form name=actionForm action=SaveRequestAction method=POST
  table align=center class=dataTable border=1
tr
ths:text name=id//th
ths:text name=comments//th
ths:text name=audit.status//th
/tr
s:iterator value=demandRequest status =stat id
 =demandRequest
tr
tds:property value=id //td
tdinput type=text
 name=demandRequest[%{#stat.index}].comments //td
tdinput type=text
 name=demandRequest[%{#stat.index}].status //td
  /tr
 /table
 /s:form


 My Action has the following
 public class SaveAudits extends ActionSupport {

  private  ListDemandRequest _demandRequest;

 @Override
  public String execute() throws Exception {
   // save it
  LOG.info(demandRequest size+ _demandRequest.size());

return success;
  }
  public ListDemandRequest getDemandRequest() {
   return _demandRequest;
  }

  public void setDemandRequestListDemandRequest demandRequest) {
   _demandRequest = demandRequest;
  }
 }


 ---
 But I am not able to access the list back in the Save Action form. Can
 anyone please tell what I am doing wrong???

 Thanks very much in advance
 Tuni
 --
 View this message in context:
 http://www.nabble.com/submit-%3Cs%3Aiterator%3E-list-tp23726145p23726145.html
 Sent from the Struts - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
 For additional commands, e-mail: user-h...@struts.apache.org




-- 
Luis Alberto Medina Bravo
Skype: lalbertme
Móvil: 553 715 5290
MSN: luis.med...@acm.org
--
Worker bees can leave
Even drones can fly away
The queen is their slave


Re: Preload of database data?

2009-05-22 Thread Luis Medina
Thx! 4 the tip

On Fri, May 22, 2009 at 9:46 AM, Rene Gielen gie...@it-neering.net wrote:

 The main downside is that you will have nothing injected into your
 action by the time the constructor code is executed. Also, the params
 interceptor (as others placed before preparable) should not have taken
 any effects when action is instantiated.
 Another advantage of the prepare interceptor is the use of the
 paramsPrepareParams pattern which is extremly cool for CRUD stuff

 Luis Medina schrieb:
  Does anyone know which is the diference between prepare data using the
  Action Constructor and the prepare method?
 
  On Thu, May 21, 2009 at 6:18 AM, stanl...@gmail.com wrote:
 
  You can prepare data by implemeting Preparable in your action
 
  On Tue, May 19, 2009 at 4:48 PM, Christian Benjamin Ries 
  christian_benjamin.r...@fh-bielefeld.de wrote:
 
  Hi there,
 
  I have a small site with some informations which are stored in a
  database. A method for administrations reason is added to change the
  content (names) of the datasets.
 
  Now, I will add these names to my navigation.
 
  I have a action like this:
 
  action name=Admin class=bean.Admin
...
  /action
 
  This action edits the content of the bean System.
 
  I will add this bean content to all other actions in my navigation, but
  I don't know the right way to solve this problem. Any suggestions?
 
  Thx!
 
  -
  To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
  For additional commands, e-mail: user-h...@struts.apache.org
 
 
 
 
 

 --
 René Gielen
 IT-Neering.net
 Saarstrasse 100, 52062 Aachen, Germany
 Tel: +49-(0)241-4010770
 Fax: +49-(0)241-4010771
 Cel: +49-(0)177-3194448
 http://twitter.com/rgielen

 -
 To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
 For additional commands, e-mail: user-h...@struts.apache.org




-- 
Luis Alberto Medina Bravo
Skype: lalbertme
Móvil: 553 715 5290
MSN: luis.med...@acm.org
--
Worker bees can leave
Even drones can fly away
The queen is their slave


Re: Preload of database data?

2009-05-21 Thread Luis Medina
Does anyone know which is the diference between prepare data using the
Action Constructor and the prepare method?

On Thu, May 21, 2009 at 6:18 AM, stanl...@gmail.com wrote:

 You can prepare data by implemeting Preparable in your action

 On Tue, May 19, 2009 at 4:48 PM, Christian Benjamin Ries 
 christian_benjamin.r...@fh-bielefeld.de wrote:

  Hi there,
 
  I have a small site with some informations which are stored in a
  database. A method for administrations reason is added to change the
  content (names) of the datasets.
 
  Now, I will add these names to my navigation.
 
  I have a action like this:
 
  action name=Admin class=bean.Admin
...
  /action
 
  This action edits the content of the bean System.
 
  I will add this bean content to all other actions in my navigation, but
  I don't know the right way to solve this problem. Any suggestions?
 
  Thx!
 
  -
  To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
  For additional commands, e-mail: user-h...@struts.apache.org
 
 




-- 
Luis Alberto Medina Bravo
Skype: lalbertme
Móvil: 553 715 5290
MSN: luis.med...@acm.org
--
Worker bees can leave
Even drones can fly away
The queen is their slave