Foren

Printing Error, Success, and Warning messages in portlets

Dean Grobler, geändert vor 12 Jahren.

Printing Error, Success, and Warning messages in portlets

thumbnail
srikanth a, geändert vor 12 Jahren.

RE: Printing Error, Success, and Warning messages in portlets

Regular Member Beiträge: 144 Beitrittsdatum: 21.02.11 Neueste Beiträge
Hi Dean,
As per your post, you want to display the success and error message in your portlet.
did you added those keys in the session. Could you please add them in the below way in your java class.

for success messages:=====> SessionMessages.add(actionRequest, "success");

for error messages :=====>> SessionErrors.add(actionRequest, "<key value>");

then try access them in the jsp using the "liferay-ui" tag.


hope it solves your problem.



regards
Sri
Dean Grobler, geändert vor 12 Jahren.

RE: Printing Error, Success, and Warning messages in portlets

thumbnail
Jan Gregor, geändert vor 12 Jahren.

RE: Printing Error, Success, and Warning messages in portlets

Regular Member Beiträge: 224 Beitrittsdatum: 20.10.10 Neueste Beiträge
Hi there,

Well if you have already a mechanism for storing the error message in some bean, or request variable, you can just display your message using :

<span class="portlet-msg-error"><%=message%></span>

Instead of portlet-msg error you can use "portlet-msg-success" or "portlet-msg-warning".

If you are using jsp, the message variable should hold your message. This styles are defined in liferay theme.

Hope it helps.

Jan.
thumbnail
Hajri Mohamed, geändert vor 12 Jahren.

RE: Printing Error, Success, and Warning messages in portlets

Junior Member Beiträge: 71 Beitrittsdatum: 02.03.11 Neueste Beiträge
thank you for this post, it was valuable for me,
just the portlet-msg-warning is not working for me, the two others are working well, any one that get the same issue ??
Nicola Baiocco, geändert vor 10 Jahren.

RE: Printing Error, Success, and Warning messages in portlets

New Member Beiträge: 5 Beitrittsdatum: 27.11.13 Neueste Beiträge
You can use class="portlet-msg-alert" (in Liferay 6.0.6 works fine).
thumbnail
Varun Jain, geändert vor 8 Jahren.

RE: Printing Error, Success, and Warning messages in portlets

New Member Beiträge: 2 Beitrittsdatum: 01.06.15 Neueste Beiträge
Jan Gregor:
Hi there,

Well if you have already a mechanism for storing the error message in some bean, or request variable, you can just display your message using :

<span class="portlet-msg-error"><%=message%></span>

Instead of portlet-msg error you can use "portlet-msg-success" or "portlet-msg-warning".

If you are using jsp, the message variable should hold your message. This styles are defined in liferay theme.

Hope it helps.

Jan.



Hi Jan Gregor,

I too faced the same issue. But now it's solved with this solution.
Thanks a lot

Regards,
Varun Jain