我是JSF和Primefaces的新手,我需要在点击搜索按钮时打开一个包含某种搜索结果信息的对话框。除非用户关闭它,否则应始终显示以前打开的对话框,因此我可以打开多个对话框。
我使用以下技术,我的问题是我只想在我使用Primefaces对话框架调用的对话框中使用单个xhtml模板。知道怎么做到我想要的吗?
我有一个示例代码,我试图在下面作为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>
答案 0 :(得分:1)
你的方法generateSearchDialog只显示p:对话框,其中id =&#34; test&#34;在你的页面上。这将做的是它将打开该对话框而只打开那个对话框(意思是,如果你关闭对话框并再次调用该方法,它将被重新打开)。
据我所知,你想在每次调用generateSearchDialog时创建新的Dialog实例吗?
如果要执行此操作,则需要动态创建新的对话框实例。在您的网页中,为这些对话框(即panelGroup)创建一个容器,每次调用该方法时,它都将创建一个新的Dialog实例。请记住,在辅助bean中以编程方式创建对话框不是一个好习惯,但它可以帮助您实现这一目标。现在,为了使这个工作,对话框的标题应该是动态的(可能添加一个计数器?) 你的支持bean看起来像这样:
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++;
答案 1 :(得分:0)
我有一个包含人员列表的示例代码。每次用户点击此人时,都会打开一个新对话框
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();");
}
}
}