Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
This question is asked many times. Here is one of them stackoverflow.com/questions/10396572/… . You need to use one of the <p:message> or <p:messages> or <p:growl> – Ravi Jul 6 '12 at 7:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.