有没有办法告诉 JSF<table>
在使用时它不应该渲染元素<h:selectOneRadio>
?我不使用表格,在这种情况下绝对没有意义。
任何帮助表示赞赏!
有没有办法告诉 JSF<table>
在使用时它不应该渲染元素<h:selectOneRadio>
?我不使用表格,在这种情况下绝对没有意义。
任何帮助表示赞赏!
group
带有属性的 JSF 2.3根据JSF 规范第 329 期,我添加了一个新group
属性,<h:selectOneRadio>
可以让这一切变得不那么乏味。group
在父级中具有相同值的所有单选按钮组件UIForm
将相互分组。此外,如果选择项具有 non-null ,则除了单选按钮本身和可选标签之外,它们不会呈现任何标记label
。如果有,标签会直接出现在单选按钮之后。
<!-- Just markup them the way you want! -->
<ul>
<ui:repeat id="items" value="#{bean.items}" var="item">
<li>
<h:selectOneRadio group="foo" value="#{bean.selectedItem}">
<f:selectItem itemValue="#{item}" />
</h:selectOneRadio>
</li>
</ui:repeat>
</ul>
以下场景也是可能的。当有多个相同group
的组件,并且value
属性和/或UISelectItem
子项不存在时,它将引用该组的第一个组件的那些。
<h:selectOneRadio group="foo" value="#{bean.selectedItem}">
<f:selectItems value="#{bean.availableItems}" />
</h:selectOneRadio>
<h:selectOneRadio group="foo" />
<h:selectOneRadio group="foo" />
<h:selectOneRadio group="foo" value="#{bean.selectedItem}">
<f:selectItem itemValue="one" />
<f:selectItem itemValue="two" />
<f:selectItem itemValue="three" />
</h:selectOneRadio>
<h:selectOneRadio group="foo" />
<h:selectOneRadio group="foo" />
<h:selectOneRadio group="foo" value="#{bean.selectedItem}">
<f:selectItem itemValue="one" />
</h:selectOneRadio>
<h:selectOneRadio group="foo">
<f:selectItem itemValue="two" />
</h:selectOneRadio>
<h:selectOneRadio group="foo">
<f:selectItem itemValue="three" />
</h:selectOneRadio>
<h:selectOneRadio group="foo" value="#{bean.selectedItem}">
<f:selectItem itemValue="one" />
</h:selectOneRadio>
<h:selectOneRadio group="foo" value="#{otherBean.selectedItem}">
<f:selectItem itemValue="two" />
</h:selectOneRadio>
<h:selectOneRadio group="foo" value="#{lastBean.selectedItem}">
<f:selectItem itemValue="three" />
</h:selectOneRadio>
根据 2.3.0-m07,它将在 Mojarra 中提供。
如果您已经在 JSF 2.2 上,请利用其新的传递元素/属性特性,从而将属性显式设置为传递name
属性。为了在模型中设置提交的值,您只需要一个额外的<h:inputHidden>
.
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:jsf="http://xmlns.jcp.org/jsf"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:a="http://xmlns.jcp.org/jsf/passthrough">
...
<!-- Just markup them the way you want! -->
<ul>
<ui:repeat id="items" value="#{bean.items}" var="item">
<li>
<input type="radio" jsf:id="item" a:name="#{hiddenItem.clientId}"
value="#{item}" a:checked="#{item eq bean.selectedItem ? 'checked' : null}" />
<h:outputLabel for="item" value="#{item}" />
</li>
</ui:repeat>
</ul>
<!-- This one won't display anything. -->
<h:inputHidden id="selectedItem" binding="#{hiddenItem}" value="#{bean.selectedItem}"
rendered="#{facesContext.currentPhaseId.ordinal ne 6}" />
可以在此博客中找到深入的技术解释:使用 h:selectOneRadio 在 JSF 2.2 中的自定义布局。
如果您碰巧使用PrimeFaces,那么您也可以使用<p:selectOneRadio layout="custom">
with <p:radioButton>
。
<html ... xmlns:p="http://primefaces.org/ui">
<!-- This one won't display anything. -->
<p:selectOneRadio id="foo" value="#{bean.selectedFoo}" layout="custom">
<f:selectItems value="#{bean.availableFoos}" />
</p:selectOneRadio>
<!-- Just markup them the way you want! -->
<ul>
<li><p:radioButton for="foo" itemIndex="0" /></li>
<li><p:radioButton for="foo" itemIndex="1" /></li>
<li><p:radioButton for="foo" itemIndex="2" /></li>
</ul>
您还可以遍历可用项目,您只需要在视图构建期间执行此操作:
<ul>
<c:forEach items="#{bean.availableFoos}" varStatus="loop">
<li><p:radioButton for="foo" itemIndex="#{loop.index}" /></li>
</c:forEach>
</ul>
如果您还没有使用 JSF 2.2 或者您不喜欢 PrimeFaces UI,请使用Tomahawk's <t:selectOneRadio>
,它呈现与 相同的纯 HTML 输出<h:selectOneRadio>
,但支持一个layout="spread"
属性,以便您可以按<t:radio>
您想要的方式定位项目。
例如
<html ... xmlns:t="http://myfaces.apache.org/tomahawk">
<!-- This one won't display anything. -->
<t:selectOneRadio id="foo" value="#{bean.selectedFoo}" layout="spread">
<f:selectItems value="#{bean.availableFoos}" />
</t:selectOneRadio>
<!-- Just markup them the way you want! -->
<ul>
<li><t:radio for="foo" index="0" /></li>
<li><t:radio for="foo" index="1" /></li>
<li><t:radio for="foo" index="2" /></li>
</ul>
提供定制Renderer
。这只是一点工作。从如下所示的第一个“另见”链接开始:
我不知道这对您来说是否足够合理,但是,这是一个示例解决方法。
xhtml代码:
<ui:repeat value="#{myBean.valueList}" var="radioValue">
<input type="radio" name="radioSelection" value="#{radioValue}" checked="#{radioValue == myBean.selectedRadioValue ? 'checked' : ''}">#{radioValue}</input>
</ui:repeat>
后备豆:
private String selectedRadioValue;
private List<Integer> valueList;
public MyBean() {
valueList = new ArrayList<Integer>();
for (int i = 0; i < 15; i++) {
valueList.add(i);
}
}
public String getSelectedRadioValue() {
return selectedRadioValue;
}
public List<Integer> getValueList() {
return valueList;
}
public void actionMethod() {
HttpServletRequest request = (HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();
selectedRadioValue = request.getParameter("radioSelection");
}
由于您不能直接在 xhtml 上为单选选择分配值,因此您需要从请求参数中获取它并在您的操作方法中手动分配它。