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

发布于 2024-11-18 15:44:03 字数 819 浏览 3 评论 0原文

我正在使用 http://myfaces.apache.org/core20/index.htmlhttp://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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心的位置 2024-11-25 15:44:03

您应该将要向用户显示的内容放在 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" />

问候

You should put what you want to show to the user in the itemLabel attribute, and a identifier in the itemValue

Like this

<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" />

Regards

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文