AttributeModifier


AttributeModifierを使うと、HTMLのタグのstyle属性などをjava側から置き換えることができる。
AttributeModifier color_red =
    new AttributeModifier("style", new Model("color: #ef0000;"));
Label label = new Label("label", new Model( ));
label.setModelValue("aaa");
 
label.add(color_red);
add(label);

AttributeModifierを生成して、labelにaddだぜ!

HTHL側はこんな感じ
<span wicket:id=label style=""></span>
 

このstyle=""をAttributeModifierで設定した内容にwicketが置き換えてくれます。
style=""を書かないとうまくいかないかもよ。




counter: -
最終更新:2008年04月25日 18:53