gpt4 book ai didi

html - t :selectOneRadio is not working in tomahawk version 2. 0

转载 作者:行者123 更新时间:2023-11-28 03:45:31 25 4
gpt4 key购买 nike

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

我用过战斧<t:selectOneRadio>在我的 jsf 页面中。

<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 中的等效战斧库一起正常工作。

最佳答案

您应该在 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" />

问候

关于html - t :selectOneRadio is not working in tomahawk version 2. 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6581953/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com