This question can be considered an extension of How to show error message in liferay portal?
Working on an EXT plugin in liferay 6.1 and customizing UpdateLookAndFeelAction, I am putting an error message into SessionMessages.add(request,"custom-error-msg");
but seems like the portlet lifecycle cleans the session in PortalRequestProcessor.java
(Line 186) thus deleting the session message as well. A normal Your settings were saved successfull is rendered
How can i stop the further execution in my custom UpdateLookAndFeelAction
and render this error message on /html/portlet/portlet_css/view.jsp
I have added the <liferay-ui:error key="custom-error-msg" message="custom.error.msg" />
in view.jsp
I think i read somewhere that you i have to create a hook and customize end.jsp
. Is that the right approach? Any suggestions and directions will be much appreciated.
I had to override
look_and_feel.js
as following:In UpdateLookAndFeel i had to return the custom error message in json object.