向导组件PrimeFaces更新其他变量

时间:2013-04-01 09:44:00

标签: java jsf primefaces updates wizard

我有两个标签。 使用向导组件,当我按下“下一步”按钮(从第一个选项卡)时,我需要填充一个列表(使用SelectItem对象),然后在第二个选项卡中的SelectOneMenu标签中显示这些SelectItems。我很快就完成了在THE FIRST TAB上输入数据,然后按下“下一步”按钮,这个SelectOneMenu标签(ON THE SECOND TAB)中没有任何内容。

基本上,我需要更新下一个标签以及当前标签的处理。无论如何要做到这一点?

提前致谢。

enter image description here enter image description here

这是我的代码:

<p:wizard widgetVar="wiz" showNavBar="true" flowListener="#{detentionForm.onFlowProcess}">
                <p:tab id="typeOfLeader" title="Leader Selection">
                    <p:panel header="Leader Selection">
                        <p:messages showSummary="true" showDetail="false"/>
                        <p:panelGrid columns="2">
                            #{msgs.typeOfLeaderPunishment}
                            <p:selectOneMenu value="#{detentionForm.typeOfLeaderSelectedID}" style="width:400px" panelStyle="width:150px" effect="fade">
                                <f:selectItems value="#{detentionForm.teacherTypes}" var="type" itemLabel="#{type.label}" itemValue="#{type.value}" />
                            </p:selectOneMenu>
                        </p:panelGrid> 
                    </p:panel>
                </p:tab>
                <p:tab id="typeOfPunishment" title="Punishment Type">
                    <p:panel header="Type of Punishment">
                        <p:panelGrid columns="2">
                            #{msgs.typeOfDetention}
                            <p:selectOneMenu value="#{detentionForm.typeOfPunishment}" style="width:400px" panelStyle="width:150px" effect="fade" >
                                <f:selectItems value="#{detentionForm.detentionTypes}" var="type" itemLabel="#{type.label}" itemValue="#{type.value}" />
                            </p:selectOneMenu> 
                        </p:panelGrid>

                    </p:panel>
                </p:tab>

            </p:wizard>

#{detentionForm.detentionTypes}是一个arraylist,需要按下“下一步”按钮进入SECOND TAB后填充。


这是我的支持bean:

@ViewScoped
@Named("detentionForm")
public class DetentionFormBean implements Serializable{
    @Resource(name="jdbc/DetentionCentre")
    private DataSource ds;

    private Details details = (Details) FacesContext.getCurrentInstance().getExternalContext().getSessionMap().get("userDetails");



    private String typeOfPunishment;
    private String typeOfLeader = details.getTypeOfLeader(); //Can change if user is House Leader. Eg. They can become a teacher when making a punishment
    private int typeOfLeaderID; //ID in the database of the teacher's type of leadership
    private int typeOfLeaderSelectedID = 1; //Set default to teacher as House leader can be teacher and normal teacher will be a teacher!
    private ArrayList<SelectItem> detentionTypes = new ArrayList<SelectItem>(); //SelectItem objects that shows what punishments each teacher can do
    private ArrayList<SelectItem> teacherTypes = new ArrayList<SelectItem>(); //SelectItem objects that shows what type of leadership a teacher can be (Teacher or House Leader)


    //gets all the data necessary from the database to show on the page
    @PostConstruct
    public void initialize(){
        this.setTypeOfLeaderID(details.getUserName()); //gets the ID from the database to find out the default type of leadership
        this.findTeacherTypes(this.typeOfLeader); 
    } 

    public String onFlowProcess(FlowEvent event) {  //change later for backing as well >>>>>>>>>>>>>>
            String stepToGo = event.getNewStep();
            if(stepToGo.equals("typeOfPunishment")){
                this.findDetentionTypes();

            }
        return stepToGo;

    }

    //populates teacherType Arraylist depending the user's teacher type. House Leader can be a Teacher or a House Leader.
    private void findTeacherTypes(String type) {
        if(type.equals("House Leadership Team")){
            this.teacherTypes.add(new SelectItem(Integer.toString(this.typeOfLeaderID), type)); //House leader is 2
            this.teacherTypes.add(new SelectItem(Integer.toString(this.typeOfLeaderID - 1), "Teacher" )); //Teacher is 1
        }else{ //type is Teacher
            this.teacherTypes.add(new SelectItem(Integer.toString(this.typeOfLeaderID), type)); //Teacher is 1
        }
    }


    //populates detentiontypes depending on type of leader
    private void findDetentionTypes() {
        System.out.println(">>>>Inside findDetentionTypes()!!!");
        PreparedStatement ps;
        Connection con;
        String sqlInitialData = "SELECT r.punishment_type, p.type FROM detentioncentredb.tbl_teacher_roles_allowed_punishments r, detentioncentredb.tbl_punishment_types p WHERE r.teacher_roles = ? AND p.ID = r.punishment_type";
        ResultSet rs;

        try {
            con = ds.getConnection();
            ps = con.prepareStatement(sqlInitialData);
            ps.setString(1, Integer.toString(this.typeOfLeaderSelectedID)); 
            rs = ps.executeQuery();
            while(rs.next()){
                SelectItem s = new SelectItem(rs.getString("punishment_type"), rs.getString("type"));
                this.detentionTypes.add(s);
            }
            rs.close();
            ps.close();
            con.close();

        } catch (SQLException ex) {
            Logger.getLogger(DetentionFormBean.class.getName()).log(Level.SEVERE, null, ex);
        }
    }

    //getter and setter methods

    public String getTypeOfPunishment() {
        return typeOfPunishment;
    }

    public void setTypeOfPunishment(String typeOfPunishment) {
        this.typeOfPunishment = typeOfPunishment;
    }

    public String getTypeOfLeader() {
        return typeOfLeader;
    }

    public ArrayList<SelectItem> getDetentionTypes() {
        return detentionTypes;
    }

    public ArrayList<SelectItem> getTeacherTypes() {
        return teacherTypes;
    }

    public int getTypeOfLeaderID() {
        return typeOfLeaderID;
    }

    //gets the typeOfLeader the current user is from the database. This retrieves the ID of the teacher's type of leadership. NOT WHAT THE TEACHER SELECTED.
    private void setTypeOfLeaderID(int userName){
        PreparedStatement ps;
        Connection con;
        String sqlTypeOfLeaderID = "SELECT TypeOfLeader FROM detentioncentredb.tbl_teachers WHERE RegNumber = ?";
        ResultSet rs;
        try {
            con = ds.getConnection();
            ps = con.prepareStatement(sqlTypeOfLeaderID);
            ps.setInt(1, userName);
            rs = ps.executeQuery();
            while(rs.next()){
                this.typeOfLeaderID = rs.getInt("TypeOfLeader");
            }
            rs.close();
            ps.close();
            con.close();
        } catch (SQLException ex) {
            Logger.getLogger(DetentionFormBean.class.getName()).log(Level.SEVERE, null, ex);
        }
    }

    public int getTypeOfLeaderSelectedID() {
        return typeOfLeaderSelectedID;
    }

    public void setTypeOfLeaderSelectedID(int typeOfLeaderSelectedID) {
        this.typeOfLeaderSelectedID = typeOfLeaderSelectedID;
    }


}

1 个答案:

答案 0 :(得分:2)

您可以使用 ajax 通知服务器端您正在进入向导。来自PF documentation

如果您希望在向导尝试返回或转发时在服务器端收到通知,请定义 flowListener

<p:wizard flowListener="#{userWizard.handleFlow}">
...
</p:wizard>

public String handleFlow(FlowEvent event) {
    String currentStepId = event.getCurrentStep();
    String stepToGo = event.getNextStep();
    if(skip)
        return "confirm";
    else
        return event.getNextStep();
    }

在您的情况下,根据用户在向导第一步中选择的内容,您需要在detentionTypes到达stepToGo时加载typeOfPunishment数组:

public String handleFlow(FlowEvent event) {
    String stepToGo = event.getNextStep();
    if(stepToGo.equals("typeOfPunishment")){
        detentionTypes = service.loadDetentionTypes(this.TypeOfLeaderSelectedID);
    }
}