Below is the method that I am using :
public void deleteSubStudyPlan(StudyplanCategory selectedSubStudyPlan) {
FacesContext context = FacesContext.getCurrentInstance();
System.out.println("Context......."+context);
context.addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR,"Error:Studyplan Name Already exists", ""));
try {
if (deleteService.deleteSubStudyPlan(selectedSubStudyPlan)) {
context.addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR,"Error:Studyplan Name Already exists", ""));
System.out.println("DELETED SUCCESSFULLY.");
} else {
context.addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR,"Error:Studyplan Name Already exists", ""));
System.out.println("DELETION FAILED.");
}
} catch (Exception e) {
e.printStackTrace();
}
The above method is being called up on clicking YES on the dialog box
<p:column headerText="Delete" width="50" style="text-align:center">
<p:commandLink id="showDialogButton" update=":studyPlanEditForm:display"
onclick="cdDialog.show()" value="delete">
</p:commandLink>
<p:dialog widgetVar="cdDialog" id="confirmDialoge"
header="Are you sure to delete this substudyplan">
<p:panel>
<p:commandButton value="Yes"
actionListener="#{editBean.deleteSubStudyPlan(selectedRow)}"
oncomplete="cdDialog.hide();"
update=":studyPlanEditForm:display" />
<p:commandButton value="No" onclick="cdDialog.hide();"
type="button" />
</p:panel>
</p:dialog>
</p:column>
The method is being executed but the message is not getting displayed. Please Help.