How to disable default success message in portlet?
Just have to add below lines in portlet.xml file inside <portlet>....</portlet> tag.
<init-param>
<name>add-process-action-success-action</name>
<value>false</value>
</init-param>
<init-param>
<name>add-process-action-success-action</name>
<value>false</value>
</init-param>
Comments
Post a Comment