Hi All,

I have a bean containing ArrayList property as given below

public ArrayList getCountries() 
{ 
return arrlCountries; 
}
public void setCountries(int iIndex, String strCountry) 
{ 
if (arrlCountries == null)
{
arrlCountries = new ArrayList();
}
arrlCountries.add(strCountry); 
}

This property is displayed in the jsp by the following code

<h:dataTable value="#{user.countries}" var="country">
<h:column>
<h:inputText value="#{country}"/><br>
</h:column>
</h:dataTable>

But when user changes the texts in textboxes and submit, the old values
comes up and not the new submitted one.

Please help me on this.

Also while putting logs I realized the get method is called twice after
form submission. Could anyone please help me find the reason for this?

Thanks and Regards,
KP

-----Original Message-----
From: Craig McClanahan [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 13, 2004 3:37 PM
To: Struts Users Mailing List
Subject: Re: Plugin struts validator framework to JSF

On Fri, 13 Aug 2004 15:22:46 +0900, Prasad, Kamakshya
<[EMAIL PROTECTED]> wrote:
> Dear Craig,
> 
> Could you please elaborate more on this? Kindly if possible some code
> snippets which may help me understand it better.
> 

As I said in my previous message, the nightly builds of the
Struts-Faces integration library include two versions of the standard
Struts example application -- one with Tiles and one without.  Both of
them use the Struts validator framework in conjunction with page that
use JavaServer Faces components.  Your best bet is to examine the
sources in these two webapps to understand what is going on.

http://cvs.apache.org/builds/jakarta-struts/nightly/struts-faces/

Craig

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to