Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is my first question and I hope so that I will follow all the rules on this site :)

I have to write aplication for exam based on JSF technology, and also I can use Primefaces3.3.1 library. The aplication is about surveys so I stack with how to render question where the form of answers is in matrix of radio buttons where only one selection per row is alowed. I just have to say that number of columns and rows differ from case to case. I found on Internet that I can put the answers in dataTable and use columns tag, but problem is because on that way I only successed to put titles of columns and rows but not radio buttons in empty cells of table. Now I will show one simple code and explain what is problem with radio buttons and why I can't involve them in dataTable.

My index.xhtml page:

<h:body id="bb">    
   <h:form id="form">

        <h3>Custom Layout</h3>

            <ui:repeat id="rep" value="#{form.nizNizova}" var="niz" varStatus="status">
                <p:selectOneRadio id="proba"
                                  value="#{form.opcije[status.index]}"  layout="custom">  
                    <f:selectItems value="#{form.nizNizova[status.index]}" />   
                </p:selectOneRadio>
            </ui:repeat> 

            <p:selectOneRadio id="customRadio" value="#{form.option}" layout="custom">  
                <f:selectItems value="#{form.nizButtons}" />   
            </p:selectOneRadio>

            <h:panelGrid columns="3">  
                <p:radioButton id="opt1" for="customRadio" itemIndex="0"/>  
                <h:outputLabel for="opt1" value="Option 1" />  
                <p:spinner />  

                <p:radioButton id="opt2" for="customRadio" itemIndex="1"/>  
                <h:outputLabel for="opt2" value="Option 2" />  
                <p:inputText />  

                <p:radioButton id="opt3" for="customRadio" itemIndex="2"/>  
                <h:outputLabel for="opt3" value="Option 3" />  
                <p:calendar />

                <p:radioButton id="opt4" for=":form:rep:0:proba" itemIndex="0"/>
                <h:outputLabel for="opt4" value="Option 4" />
                <p:inputText />
            </h:panelGrid>

        <p:commandButton id="submitButton" value="Submit" update="display"/>

        <h:panelGrid columns="2" id="display">  
            <h:outputText value="Value:" /> 
            <h:outputText id="value2" value="#{form.option}" />  
        </h:panelGrid>

    </h:form>    
</h:body>

My bean file:

package beans;

import com.sun.org.apache.bcel.internal.generic.Select;
import java.io.Serializable;
import java.util.ArrayList;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
import javax.faces.model.SelectItem;

@ManagedBean(name="form")
@SessionScoped
public class Form1 implements Serializable {
    private String option;
    private SelectItem[] nizButtons = {
        new SelectItem("1", "Option 1"),
        new SelectItem("2", "Option 2"),
        new SelectItem("3", "Option 3")
    };
    private ArrayList<SelectItem[]> nizNizova = new ArrayList<SelectItem[]>();
    private String[] opcije = new String[2];

    private String[] ids = {"probap", "probas"};

    public Form1() {
        SelectItem[] niz1 = {new SelectItem("4", "Option 4"),
                             new SelectItem("5", "Option 5"),
                             new SelectItem("6", "Option 6")};
        nizNizova.add(niz1);

        SelectItem[] niz2 = {new SelectItem("7", "Option 7"),
                             new SelectItem("8", "Option 8"),
                             new SelectItem("9", "Option 9")};
        nizNizova.add(niz2);
    }

    public String getOption() {
        return option;
    }

    public void setOption(String option) {
        this.option = option;
    }

    public SelectItem[] getNizButtons() {
        return nizButtons;
    }

    public void setNizButtons(SelectItem[] nizButtons) {
        this.nizButtons = nizButtons;
    }

    public ArrayList<SelectItem[]> getNizNizova() {
        return nizNizova;
    }

    public void setNizNizova(ArrayList<SelectItem[]> nizNizova) {
        this.nizNizova = nizNizova;
    }

    public String[] getOpcije() {
        return opcije;
    }

    public void setOpcije(String[] opcije) {
        this.opcije = opcije;
    }

    public String[] getIds() {
        return ids;
    }

    public void setIds(String[] ids) {
        this.ids = ids;
    }
}

And when I try to run this code above, I always get error for last row in gridPanel: Cannot find component ':form:rep:0:proba' in view. but it works fine for other rows above where I use group of custom radio butons named staticly "customRadio" as I saw in Primefaces demo show.

I also try another solutions: "proba0" ":proba0" "form:proba0" ":form:proba0" ....etc

but it not works!

Please can anyone help me to resolve this code(because I need it onloy to success in puting group of radio buttons in rows of dataTable) or to give me some another solution how to write matrix of radio buttons with one selection per row on jsf and primefaces?

Thanks a lot anyway!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.