In my JSF+Primefaces application I have a simple web page where I am using validations on input box. There is a save button if validations are through the on click on save button my data get stored in db and I got a dialog box saying your data is saved successfully. On close of dialog box I have a AJAX request which decides which view to refresh next.
Here is the code for .xhtml
<h:body>
<h:form id="createAccessPrivilegeForm" styleClass="top-margin">
<center>
<p:dialog id="createAccessPrivilegeDialog" header="Status" widgetVar="createAccessPrivilegeDialog"
visible="#{createAccessPrivilegeBean.dialogBoxRendered}">
<p:messages id="createAccessPrivilegeMessages" showDetail="true" sticky="true" />
<p:ajax event="close" update=":centerPanel :leftNavigationForm:leftNavigationTabView" listener="#{createAccessPrivilegeBean.handleClose}" />
</p:dialog>
<h:panelGrid columns="3" cellpadding="5" styleClass="footer_center">
<h:outputLabel for="name" value="Name:" />
<p:inputText value="#{createAccessPrivilegeBean.name}" id="name" label="name" size="55" required="true"
requiredMessage="#{messages.requiredError}" validatorMessage="#{messages.alphaNumericError}">
<f:validateRegex pattern="#{validatorBean.accessprivilegeValidator}"></f:validateRegex>
</p:inputText>
<p:message for="name" display="icon" />
<f:facet name="footer">
<p:commandButton id="saveButton" value="Save" actionListener="#{createAccessPrivilegeBean.createAccessPrivilege}"
update=":createAccessPrivilegeForm" />
<p:commandButton id="undoButton" value="Undo" onclick="javascript:undo();" />
</f:facet>
</h:panelGrid>
</center>
</h:form>
</h:body>
Now I am setting the visible property of the dialog box through the backing bean like initially on page log it is false. Its gets true in two case from backing bean
- When record is saved successfully I get the success message on dialog in that case mark visible property of dialog box to true.
- When record to be saved already exists in the db than also I mark dialog box visible property to true and show already exists message on dialog box.
Every dialog box appears on close of that dialog box I set visible property of the dialog box to false.
Here the code of backing bean:
@ManagedBean
@SessionScoped
public class CreateAccessPrivilegeBean implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
@ManagedProperty(value = "#{privilegesTreeBean}")
private PrivilegesTreeBean privilegesTreeBean;
@ManagedProperty(value = "#{leftNavigationBean}")
private LeftNavigationBean leftNavigationBean;
private String name = "";
private boolean dialogBoxRendered = false;
public CreateAccessPrivilegeBean() {
...
setDialogBoxRendered(false);
}
public void createAccessPrivilege() throws HTiCServiceException {
List<Privileges> privilegesList = privilegeService
.getAllPrivilegesByCategory(UIConstants.ACCESS_CATEGORY);
.....
if (privilegeExists) {
FacesContext context = FacesContext.getCurrentInstance();
context.addMessage(null, new FacesMessage("Error:" ,
this.name + " Privilege with this name already exists"));
} else {
......
FacesContext context = FacesContext.getCurrentInstance();
context.addMessage(null, new FacesMessage("Success:",
"Privilege successfully added"));
}
this.setName("");
setDialogBoxRendered(true);
}
public void handleClose() {
....
setDialogBoxRendered(false);
}
getters... setters....
}
But now the weird path is My dialog box works fine only for first time when pages is load. On close of the dialog box I stay on that page only and when I saved another value dialog box don't appear. On deep investigation on the html page view I came to know that my dialog do rendered on the html page but the it has the css
.ui-overlay-hidden * {
visibility: hidden !important;
}