我想从辅助bean动态创建一个primefaces对话框。 我写了上面的代码:
public void showDialog(){
UIComponent panelGroup = facesContext.getViewRoot().findComponent("form1");
System.out.println("found or not??"+ panelGroup.toString());
Dialog dialog = new Dialog();
dialog.setId("sample");
dialog.setWidgetVar("widget");
dialog.setHeader("Sample");
dialog.setVisible(true);
dialog.setMinimizable(true);
dialog.setDynamic(true);
dialog.setHideEffect("fade");
dialog.setFooter("footer");
dialog.setDraggable(true);
dialog.setMinWidth(600);
dialog.setClosable(true);
dialog.setModal(true);
dialog.setAppendToBody(false);
panelGroup.getChildren().add(dialog);
RequestContext requestContext = RequestContext.getCurrentInstance();
requestContext.openDialog("widget");
requestContext.update("form1");
}
在我的jsf页面中:我有
<h:form id="form1" >
<h:commandButton value="show Dialog" action="#{createDialog.showDialog()}" />
</h:form>
问题是,当我将其设置为可见时,我得到了对话框,但我无法关闭(我没有得到关闭图标,也没有我可以拖动它)!
答案 0 :(得分:4)
您需要替换此行:
requestContext.openDialog("widget");
到那个:
requestContext.execute("PF('widget').show()");
RequestContext.openDialog()方法引用与p:dialog组件不同的Primefaces Dialog Framework API。
来自primefaces用户指南:
Dialog Framework(DF)用于在a中打开外部xhtml页面 在运行时动态生成的对话框。
因此,RequestContext.openDialog()希望您提供xhtml页面的路径作为参数。
p:dialog组件有javascript api show()和hide()方法与之交互。