Descargar
Desarrollar
Cuenta
Descargar
Desarrollar
Entrar
Forgot Account/Password
Crear Cuenta
Idioma
Ayuda
Idioma
Ayuda
×
Entrar
Nombre de usuario
Contraseña
×
Forgot Account/Password
Translation Status of Español
Categoría:
Software
Gente
PersonalForge
Magazine
Wiki
Buscar
OSDN
>
Buscar Software
>
Software Development
>
pirka
>
Ticket List/Search
>
Incidencia #10556
pirka
Descripción
Project Summary
Developer Dashboard
Página Web
Developers
Image Gallery
List of RSS Feeds
Activity
Statistics
Historial
Descargas
List of Releases
Stats
Código Fuente
Code Repository list
Subversion
Ver Repositorio
Incidencia
Ticket List
Milestone List
Type List
Component List
List of frequently used tickets/RSS
Submit New Ticket
Documents
Wiki
FrontPage
Title index
Recent changes
Doc Mgr
List Docs
Communication
Foros
List of Forums
みんなの意見交換 (2)
質問箱 (32)
Mailing Lists
list of ML
pirka-info
pirka-users
Noticias
Incidencia #10556
Ticket List
Submit New Ticket
RSS
setDto()はどのように使うのですか?
Abrir Fecha:
2007-06-08 13:53
Última actualización:
2007-06-13 16:59
monitor
ON
OFF
Informador:
(Anónimo)
Propietario:
(Ninguno)
Tipo:
Q&A
Estado:
Open
Componente:
(Ninguno)
Hito:
(Ninguno)
Prioridad:
5 - Medium
Gravedad:
5 - Medium
Resolución:
Fixed
Fichero:
Ninguno
Details
Responder
画面に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
Comentario
Responder
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
Resolución
Update from
Ninguno
to
Fixed
2007-06-13 16:58
Updated by:
afurukawa
Ticket Close date
is changed to
2007-06-13 16:58
Estado
Update from
Open
to
Cerrado
2007-06-13 16:59
Updated by:
afurukawa
Estado
Update from
Cerrado
to
Open
Attachment File List (
0
)
Attachment File List
No attachments
Editar
Add Comment
You are not logged in.
I you are not logged in, your comment will be treated as an anonymous post. »
Entrar
Add Comment
Vista previa
Submit
きか?を教えて頂ければと思います。
以下に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>