p:tabView
どういうわけかjsf uiの繰り返しタグで作成することは可能ですか? Javaリストからタブを生成するループを作成する方法を見つけようとしました。ここを参照してください。これははるかに複雑であることがわかりました。可能な解決策はありますか?
質問する
3297 次
3 に答える
3
あなたは次のようにすることができます
あなたの豆
public class BeanName implements Serializable {
public BeanName(){
personList = new ArrayList<Person>();
personList.add(new Person("ajay", "mumbai"));
personList.add(new Person("hari", "pune"));
}
private List<Person> personList;
public List<Person> getPersonList() {
return personList;
}
public void setPersonList(
List<Person> personList) {
this.personList= personList;
}
}
public class Person{
private String name;
private String address;
public Person(String name, String address) {
this.name=name;
this.address=address;
}
public String getName(){
return name;
}
public void setName(String name){
this.name=name;
}
public String getAddress(){
return address;
}
public void setAddress(String address){
this.address=address;
}
}
Xhtml のコード
<p:tabView rendered="#{not empty beanName.personList}" value="#{beanName.personList}" var="list">
<p:tab title="#{list.name}">here your data</p:tab>
</p:tabView>
于 2014-12-17T12:05:43.140 に答える
-1
これを試してみてください。
<p:tabView id="tabView1">
<ui:repeat value="#{controllerBean.docList}" var="doc">
<p:tab title="Godfather Part I">
<h:panelGrid columns="2" cellpadding="10">
<p:graphicImage value="/images/godfather/godfather1.jpg" />
<h:outputText
value="The story begins as Don Vito Corleone, the head of a New York Mafia family, oversees his daughter's wedding.
His beloved son Michael has just come home from the war, but does not intend to become part of his father's business. T
hrough Michael's life the nature of the family business becomes clear. The business of the family is just like the head of the family, kind and benevolent to those who give respect,
but given to ruthless violence whenever anything stands against the good of the family." />
</h:panelGrid>
</p:tab>
</ui:repeat>
</p:tabView>
これは、primafaces tabview を使用した単純な jsf コードです。
于 2013-06-01T22:01:17.110 に答える