[Seasar-user:11837] [Teeda] forEachとradioボタンで柔軟なレイアウト

Tsutomu Uchima [E-MAIL ADDRESS DELETED]
2007年 11月 28日 (水) 20:55:57 JST


うちまです。お世話になります。

TeedaにてforEachとradioボタンを組み合わせて使用し柔軟なレイアウトを実現させ
たいと思っています。

S2JSFでは下記に示したソースでradioボタンの出力ソースはtableタグに囲まれず自
由にレイアウト出来ました。同様な事をTeedaで実現させたいのですがサンプルや
ソースを見ている限りその方法が分かりません。

下記ソースと同等に書くにはTeedaでどう記述すればよろしいのでしょうか。


=== S2JSF ソースここから ===========================================

<html xmlns:m="http://www.seasar.org/maya">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-31j" />
<title>ForEach4</title>
</head>
<body>
<form>
<table border="1">
<tr bgcolor="#7777FF">
<th>&nbsp;</th>
<th>date</th>
</tr>
<span m:inject="s:selectOneRadio" m:value="#{forEach4Dto.selection}">
<span m:inject="s:forEach" m:items="#{forEach4DtoList}" m:var="e"
m:varindex="i">
<tr>
<td><input type="radio" m:value="#{e.selection}"/></td>
<td><span m:value="#{e.date}">2000/01/01</span></td>
</tr>
</span>
</span>
</table>
<input type="submit" value="select"
m:action="#{forEach4ListAction.select}"/>
</form>
<a href="forEach4List.html">forEach4List.html</a>
</body>
</html>

=== S2JSF ソースここまで ===========================================




Seasar-user メーリングリストの案内