2 つのタブがあります。ウィザード コンポーネントでは、(最初のタブから) [次へ] ボタンを押すと、(SelectItem オブジェクトを使用して) リストを作成し、2 番目のタブの SelectOneMenu タグにこれらの SelectItems を表示する必要があります。すぐに最初のタブでデータの入力を終了し、[次へ] ボタンを押すと、この SelectOneMenu タグ (2 番目のタブ) には何も含まれていません。
基本的には、現在のタブの処理に合わせて次のタブを更新する必要があります。とにかくこれを行うには?
前もって感謝します。
これが私のコードです:
<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}
2番目のタブの「次へ」ボタンを押したら、データを入力する必要がある配列リストです。
これが私のバッキングビーンです:
@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;
}
}