Ticket #10556

setDto()はどのように使うのですか?
Date d'ouverture: 2007-06-08 13:53 Dernière mise à jour: 2007-06-13 16:59

Rapporteur:
(Anonyme)
Propriétaire:
(Aucun)
Type:
État:
Ouvert
Composant:
(Aucun)
Jalon:
(Aucun)
Priorité:
5 - moyen
Sévérité:
5 - moyen
Résolution:
Fixed
Fichier:
Aucun

Détails

画面に2重ループがある場合にどうやって値をセットするべ
きか?を教えて頂ければと思います。

以下にHTMLの例をあげますので。

<table border="1" >
<tr>
<div type="loop" name="samplingLoop">
<td class="title">
<span name="titleName"></span>
</td>
</div>
</tr>

<div type="loop" name="itemLineLoop">
<tr>
<div type="loop" name="itemColmLoop">
<td class="title">
<span name="itemValue"></span>
</td>
</div>
</tr>
</div>
</table>

Ticket History (3/4 Histories)

2007-06-10 21:52 Updated by: oakita
Commentaire
Logged In: YES
user_id=28918

上記のようなループは以下のようにして
データの設定をしてください。


ここから----------------------------------
// item
HashMap<String, Object> line = new
HashMap<String, Object>();

List<HashMap> lineList = new
ArrayList<HashMap>();
for(int i=0;i<50;i++){
HashMap<String, Object> colm =
new HashMap<String, Object>();
List<HashMap> colmList = new
ArrayList<HashMap>();
for(int j=0;j<50;j++){

// Colm
HashMap<String,
Object> itemlist = new HashMap<String, Object>();
itemlist.put
("itemValue","i="+ i+ ", j="+ j);

colmList.add(itemlist);

}
colm.put("itemColmLoop",
colmList);
lineList.add(colm);

}

// Line
line.put("itemLineLoop", lineList);


this.setDto(line);
----------------------------------ここまで

また何かあればご質問ください。
2007-06-13 16:57 Updated by: afurukawa
  • Résolution Update from Aucun to Fixed
2007-06-13 16:58 Updated by: afurukawa
  • Ticket Close date is changed to 2007-06-13 16:58
  • État Update from Ouvert to Atteints
2007-06-13 16:59 Updated by: afurukawa
  • État Update from Atteints to Ouvert

Attachment File List

No attachments

Modifier

You are not logged in. I you are not logged in, your comment will be treated as an anonymous post. » Connexion