[Seasar-user:20657] Re: 【Teeda】Dynamic Propertyで設定できる属性について
kenta
[E-MAIL ADDRESS DELETED]
2011年 3月 13日 (日) 23:22:35 JST
kentaです。
> それを見せられても時間の無駄になりかねません。
> まずは状況をきちんと整理して、サンプルは問題が発生する最低限のもので
> 再度質問してください。
申し訳ありませんでした。
スケジュール的にテンパっていたので・・・(^^;
後学までに、3点質問させて下さい。
質問1.ネストしたjava.util.Listは非対応であるという認識であっていますで
しょうか。?
http://ml.seasar.org/archives/seasar-user/2007-August/009620.html
即ち、下記のPage、Dtoが定義されている場合、以下のテンプレートHTMLで
id='childName'の記述は無効?
<div id='parentItems'>
<span id="parentName"/>
<div id='childItems'>
<span id="childName"/>
</div>
</div>
public class AaaPage {
public List<ParentDto> parentItems;
public ParentDto parentDto;
public String parentName;
public List<ChildDto> childItems;
public String childName;
}
public class ParentDto {
public String parentName;
public List<ChildDto> childItems;
}
public class ChildDto {
public String childName;
}
質問2.forEach使用際、idを一意し、かつjavascriptの引数に渡す事は可能なの
でしょうか?
(意図としては、forEachを使用してformを作り、サブミットボタンの換わり
に、JavaScriptでformのidを指定してリクエストを飛ばしたい。)
例)
<div id='parentItems'>
<form id="uniqueId" method="post" action="aaa">
<input type="image" id="imgPath" src="aaa" onclick="hoge('uniqueId')" />
or
<a href="#" onclick="hoge('uniqueId')" >foo</a>
</form>
</div>
http://www.w3.org/TR/html401/struct/global.html#adef-id
http://ml.seasar.org/archives/seasar-user/2008-April/013613.html
http://ml.seasar.org/archives/seasar-user/2007-July/009539.html
質問3.Dynamic Propertyを使用してformのname属性を設定する事はできるので
しょうか?
(action属性は設定できたが、name属性は出来ませんでした)
Seasar-user メーリングリストの案内