Télécharger
Développer
Compte
Télécharger
Développer
Connexion
Mot de passe oublié ?
Créer un compte
Langue
Aide
Langue
Aide
×
Connexion
Nom du compte
Mot de passe
×
Mot de passe oublié ?
Traduction statut du Français
Catégorie :
Logiciel
Peuple
PersonalForge
Magazine
Wiki
Recherche
OSDN
>
Trouver un logiciel
>
Développement de logiciels
>
pirka
>
Ticket List/Search
>
Ticket #10556
pirka
Description
Résumé du projet
Dashboard - Développeur
Page Web
Développeurs
Galerie d'images
Liste des flux RSS
Activité
Statistiques
Historique
Téléchargements
List of Releases
Stats
Code Source
Liste des dépôts de code
Subversion
Voir le référentiel
Ticket
Liste des tickets
Liste des Jalons
Liste des types
Liste des composants
Liste des tickets/RSS fréquemment utilisés
Soumettre un nouveau ticket
Documents
Wiki
Page de garde
Index du titre
Modifications récentes
Doc Mgr
List Docs
Communication
Forums
Liste des forums
みんなの意見交換 (2)
質問箱 (32)
Listes de diffusion
Liste de ML
pirka-info
pirka-users
Nouvelles
Ticket #10556
Liste des tickets
Soumettre un nouveau ticket
RSS
setDto()はどのように使うのですか?
Date d'ouverture:
2007-06-08 13:53
Dernière mise à jour:
2007-06-13 16:59
monitor
ON
OFF
Rapporteur:
(Anonyme)
Propriétaire:
(Aucun)
Type:
Q&A
État:
Ouvert
Composant:
(Aucun)
Jalon:
(Aucun)
Priorité:
5 - moyen
Sévérité:
5 - moyen
Résolution:
Fixed
Fichier:
Aucun
Détails
Répondre
画面に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)
Show older Histories
2007-06-10 21:52
Updated by:
oakita
Commentaire
Répondre
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 (
0
)
Attachment File List
No attachments
Modifier
Ajouter un commentaire
You are not logged in.
I you are not logged in, your comment will be treated as an anonymous post. »
Connexion
Ajouter un commentaire
Aperçu
Soumettre
きか?を教えて頂ければと思います。
以下に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>