リストを反復処理して編集可能なテーブルを作成する JSP があります。
<s:iterator value="test" id="countryList">
<tr>
<td><s:textfield name="countryCode" value="%{countryCode}" theme="simple" /></td>
<td><s:textfield name="countryName" value="%{countryName}" theme="simple" /></td>
</tr>
</s:iterator>
私のリスト:
List<Country> test = new ArrayList<Country>();
国クラス:
public class Country {
private String countryCode;
private String countryName;
and the getter setters......
次のようにリストに入力するとします。
Country country = new Country();
Country country1 = new Country();
country.setCountryCode("1");
country.setCountryName("India");
country1.setCountryCode("2");
country1.setCountryName("US");
test.add(country);
test.add(country1);
JSP でcountrycode
との値を変更すると、アクションで更新された値を取得する必要があります。countryname
しかし、私はできませんか。これらの更新された値を取得する方法はありますか。