t:selectOneRadio 在 tomahawk 2.0 版中不起作用
我正在使用 http://myfaces.apache.org/core20/index.html 和http://myfaces.apache.org/tomahawk-project/tomahawk20/tagdoc/t_selectOneRadio.html。
我在 jsf 页面中使用了 tomahawk
。
<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 库正常工作。
I am using http://myfaces.apache.org/core20/index.html and http://myfaces.apache.org/tomahawk-project/tomahawk20/tagdoc/t_selectOneRadio.html.
I have used tomahawk <t:selectOneRadio>
in my jsf page.
<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" />
I am not able to view the radio buttons, where-in the same code worked properly in JSF 1.1 with the equivalent Tomahawk libraries in jboss6.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将要向用户显示的内容放在 itemLabel 属性中,并将标识符放在 itemValue 中
像这样
问候
You should put what you want to show to the user in the itemLabel attribute, and a identifier in the itemValue
Like this
Regards