Hello, I'm trying to display a info message after a dialog finishes. I'm using: Utils.addStatusMessage(FacesMessage.SEVERITY_INFO, "Message"); but this only displays current time, and no message. On the other hand Utils.addErrorMessage("message") works perfectly. Can someone tell me how to display a message after dialog execution, it doesn't matter how it is done or shown, I just need a way to show a message with some info from the Dialog Bean.
Found that the class: org.alfresco.web.ui.common.Utils in method: addStatusMessage constructs the FacesMessage fm = new FacesMessage(severity, time, msg); but the time and msg arguments are in the wrong order…
Yes I am also facing the same issue. means when i use Utils.addStatusMessage(FacesMessage.SEVERITY_INFO, "My Message") it is displaying only current time but not the message.
so far any solution on how to display the message?