layout - Primefaces :radioButton inside a ui:repeat

标签 layout radio-button primefaces uirepeat

这是我的 xhtml 代码:

 <?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:p="http://primefaces.org/ui">

  <h:head>
    <title>Custom Radio Test</title>
  </h:head>

  <h:body>

    <h:form id="mF" >

      <p:selectOneRadio id="ITRadioGrp" value="#{testBean.radioSelectedValue}" layout="custom">
        <f:selectItems value="#{testBean.selectItems}" />
      </p:selectOneRadio>

      <h:panelGrid columns="1">

        <ui:repeat id="vBGOF" value="#{testBean.groupOfFlights}" var="aFlight" varStatus="gofIndex">
          <p:radioButton for="ITRadioGrp" itemIndex="#{gofIndex.index}"/> #{aFlight}
        </ui:repeat>

      </h:panelGrid>

    </h:form>

  </h:body>

</html>

这是托管 bean:

    package com.modern;

import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
import javax.faces.model.SelectItem;
import java.util.*;

@ManagedBean
@RequestScoped
public class TestBean {

  private String radioSelectedValue;
  private String[] groupOfFlights;
  private List selectItems;

  public TestBean() {
    groupOfFlights = new String[]{"FlightOne", "FlightTwo", "FlightThree"};
  }

  public String[] getGroupOfFlights() {
    return groupOfFlights;
  }

  public void setGroupOfFlights(String[] groupOfFlights) {
    this.groupOfFlights = groupOfFlights;
  }

  public String getRadioSelectedValue() {
    return radioSelectedValue;
  }

  public void setRadioSelectedValue(String radioSelectedValue) {
    this.radioSelectedValue = radioSelectedValue;
  }

  // modified
  public List getSelectItems() {
    try {
      if (selectItems == null || selectItems.isEmpty()) {
        selectItems = new ArrayList();
        for (int g = 0; g < 3; g++) {
          SelectItem option = new SelectItem(g, "flight" + (g + 1)); // value, label
          selectItems.add(option);
        }
      }
    } catch (Exception e) {
      System.out.println(this.getClass().getName() + "] EXCEPTION " + e.toString());
    }
    return selectItems;
  }

  public void setSelectItems(List selectItems) {
    this.selectItems = selectItems;
  }
}

我总是遇到同样的错误:

在 View 中找不到组件“mF:ITRadioGrp”。

javax.faces.FacesException: Cannot find component 'mF:ITRadioGrp' in view.
    at org.primefaces.component.radiobutton.RadioButtonRenderer.findSelectOneRadio(RadioButtonRenderer.java:144)
    at org.primefaces.component.radiobutton.RadioButtonRenderer.encodeEnd(RadioButtonRenderer.java:35)
    at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1763)
    at com.sun.faces.facelets.component.RepeatRenderer.encodeChildren(RepeatRenderer.java:104)
    at com.sun.faces.facelets.component.UIRepeat.process(UIRepeat.java:513)
    at com.sun.faces.facelets.component.UIRepeat.encodeChildren(UIRepeat.java:974)
    at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304)
    at com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRenderer.java:185)
    at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:129)
    at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:845)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1756)
    at javax.faces.render.Renderer.encodeChildren(Renderer.java:168)
    at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:845)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1756)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1759)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1759)
    at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:401)
    at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:131)
    at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121)
    at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)

我尝试更改

中的“for”属性
<p:radioButton for="mF:ITRadioGrp" itemIndex="#{gofIndex.index}"/> #{aFlight}

至(我检查了 HTML 源代码,删除了 p:selectOneRadio 中的layout=custom"):

  1. mF:ITRadioGrp
  2. ITRadioGrp
  3. mF:ITRadioGrp:0
  4. mF:ITRadioGrp:1 ...

但总是同样的错误! 我哪里错了??? 谢谢!

最佳答案

使用冒号作为前缀,以便从 View 根开始寻址 p:selectOneRadio:

<p:radioButton for=":mF:ITRadioGrp" itemIndex="#{gofIndex.index}"/>

如果这不起作用,请在浏览器中查看页面的 html 源代码并找到 p:selectOneRadio 的正确客户端 ID。在您的 for 属性中使用此 ID。

关于layout - Primefaces :radioButton inside a ui:repeat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9803344/

相关文章:

javascript - django 形成外键 'value error must be an instance'

java - 更新后未调用 Jquery 事件

java - 如何将 JSF UIInput 组件重置为其托管 bean 值

java - 在边框布局中添加按钮

c# - ListBox 知道它在某个遥远的 ScrollViewer 中吗?

android - 一个 View 内的多个回收 View (gridlayout 和水平线性布局)

复选框中的 Jquery

c++ - Qt:强制QDockWidget的大小

javascript - 如何使用 jQuery 处理单选按钮列表选项更改

jsf - :outputScript with target ="head" not working with Primefaces 3. 5