我是JSF和Primefaces的新手,每当点击搜索按钮时,我都需要打开一个包含某种搜索结果信息的对话框。以前打开的对话框应该始终显示,除非用户关闭它,所以我可以打开多个对话框。
我正在使用以下技术,我的问题是我只想为使用Primefaces对话框框架调用的对话框使用一个xhtml模板。知道如何实现我想要的吗?
- JBoss EAP 6.2
- 底漆4.0
- JSF 2.2
我有一个示例代码,我正试图在下面作为POC进行工作。它运行良好,我可以显示第一个对话框,但当再次单击搜索按钮时,我不再知道如何打开另一个对话框。
home.xhtml
<div id="searchBtnDiv">
<p:commandButton id="queryNetworkElem" value="Search" ajax="true" actionListener="#{searchBean.querySubmit}" />
<p:commandButton id="advanceQuery" value="Advance Search" ajax="true" actionListener="#{searchBean.querySubmit}" />
</div>
SearchBean.java
@ManagedBean(name = "searchBean")
public class SearchBean{
...
public void generateSearchDialog(String searchParam) throws IOException{
System.out.println("opening dialog");
testMessage = "testing ";
RequestContext.getCurrentInstance().openDialog("test");
}
...
}
test.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:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core">
<h:head>
</h:head>
<h:body>
<h1><p:outputLabel value="#{searchBean.testMessage}"/></h1>
<p:commandButton value="test" />
</h:body>
</html>
您的方法generateSearchDialog仅在页面上显示id="test"的p:对话框。这样做的结果是,它将打开那个对话框,并且只打开那个对话框(这意味着,如果关闭对话框并再次调用该方法,它将重新打开)。
据我所知,您想在每次调用generateSearchDialog时创建新的Dialog实例吗?
如果要执行此操作,则需要动态创建新的对话框实例。在您的网页中,为这些对话框创建一个容器(即panelGroup),每次调用该方法时,它都会创建一个新的对话框实例。请记住,在backingbean中以编程方式创建对话框不是一个好的做法,但它将帮助您实现这一点。现在,为了实现这一点,对话框的标题应该是动态的(也许添加一个计数器?)你的支持豆看起来像这样:
UIComponent panelGroup = FacesContext.getCurrentInstance()
.getViewRoot().findComponent("dialogContainer");
Dialog dialog = new Dialog();
dialog.setId("newDialogInstance" + counter);
dialog.setVisible(true); //add whatever code you like
...
panelGroup.getChildren().add(dialog);
...
//update the WHOLE panel
RequestContext.getCurrentInstance().update("dialogContainer");
// OR openDialog your new Dialog.
RequestContext.getCurrentInstance().openDialog("newDialogInstance" + counter);
...
counter++;
我有一个示例代码,它有一个人员列表。每次用户点击人员时,都会打开一个新对话框
xhtml代码:
<h:form id="form">
<p:dataTable value="#{mbean.personList}" var="person">
<p:column headerText="Name">
<p:commandLink value="#{person.name}"
update=":form">
<f:setPropertyActionListener target="#{mbean.selectedPerson}"
value="#{person}" />
</p:commandLink>
</p:column>
<p:column headerText="Country">
#{person.country}
</p:column>
</p:dataTable>
<!-- <ui:include src="/WEB-INF/test.xhtml" /> -->
<ui:repeat var="d" value="#{mbean.personList}">
<p:dialog id="_#{d.getId()}" modal="false" width="500" height="500" widgetVar="Jag:#{d.getId()}">
<p:ajax event="close" listener="#{mbean.handleClose}" />
<h:outputLabel value="#{d.getName()}"></h:outputLabel>
</p:dialog>
</ui:repeat>
</h:form>
Java代码:
@ManagedBean(name = "mbean")
@ViewScoped公共类TestBean实现Serializable{
private List<Person> personList;
private Person selectedPerson;
private String dialogName;
private static int count=0;
private Map<Integer, String> dialogRemover = new HashMap<>();
public Map<Integer, String> getDialogRemover() {
return dialogRemover;
}
public void setDialogRemover(Map<Integer, String> dialogRemover) {
this.dialogRemover = dialogRemover;
}
public String getDialogName() {
return dialogName;
}
public void setDialogName(String dialogName) {
this.dialogName = "jag"+String.valueOf(count++);
}
public TestBean() {
personList = new ArrayList<Person>();
personList.add(new Person(6,"Aaa", "UK"));
personList.add(new Person(7,"Bbb", "Australia"));
personList.add(new Person(8,"Ccc", "Asia"));
}
public List<Person> getPersonList() {
return personList;
}
public void setPersonList(List<Person> personList) {
this.personList = personList;
}
public Person getSelectedPerson() {
return selectedPerson;
}
public void handleClose(CloseEvent event){
System.out.println("eventZ: "+event.getComponent().getId());
System.out.println("handle close event "+event.getComponent().getClientId());
String[] array = event.getComponent().getClientId().split(":");
dialogRemover.remove(Integer.parseInt(array[2]));
System.out.println("list elements are "+dialogRemover.size());
}
public void setSelectedPerson(Person selectedPerson) {
this.selectedPerson = selectedPerson;
String test = this.selectedPerson.getName();
if(!dialogRemover.containsValue("Jag:"+String.valueOf(this.selectedPerson.getId())) ){
dialogRemover.put(personList.indexOf(this.getSelectedPerson()),"Jag:"+String.valueOf(this.selectedPerson.getId()));
}
RequestContext context1 = RequestContext.getCurrentInstance();
for (Map.Entry<Integer, String> entry : dialogRemover.entrySet()) {
context1.execute("PF('"+entry.getValue()+"').show();");
}
}
}