t:selectOneRadio在tomahawk 2.0版中不起作用

时间:2011-07-05 11:30:06

标签: html jsf jsf-2 tomahawk

我正在使用http://myfaces.apache.org/core20/index.htmlhttp://myfaces.apache.org/tomahawk-project/tomahawk20/tagdoc/t_selectOneRadio.html

我在jsf页面中使用了tomahawk <t:selectOneRadio>

<t:selectOneRadio id="myScript" value="#{bean.myScript}" layout="spread">
    <f:selectItem itemLabel="" itemValue="Every" />
    <f:selectItem itemLabel="" itemValue="Every weekday" />
</t:selectOneRadio>

<t:radio for="myScript" index="0" />
<t:radio for="myScript" index="1" />

我无法查看单选按钮,其中相同的代码在JSF 1.1中与jboss6中的等效Tomahawk库正常工作。

1 个答案:

答案 0 :(得分:0)

您应该在itemLabel属性中将要显示的内容和itemValue中的标识符

放在用户中

喜欢这个

<t:selectOneRadio id="myScript" value="#{bean.myScript}" layout="spread">
    <f:selectItem itemLabel="Every" itemValue="every" />
    <f:selectItem itemLabel="Every weekday" itemValue="everyWeekday" />
</t:selectOneRadio>

<t:radio for="myScript" index="0" />
<t:radio for="myScript" index="1" />

此致