Fórum

using the tag <liferay-ui:ratings-score/> in portlets

Joerg Schaefer, modificado 15 Anos atrás.

using the tag <liferay-ui:ratings-score/> in portlets

Junior Member Postagens: 60 Data de Entrada: 05/05/08 Postagens Recentes
Hi,
i want to use the nice tag <liferay-ui:ratings-score/> in my own portlet.
I've tried it, but i get JavaScript-Errors (invalid object initializer).
Is it possible to use the tag in own portlets?
What are the steps i have to do?

In my test i put the both taglibs in my jsp header

<%@ taglib uri="http://liferay.com/tld/theme" prefix="liferay-theme" %>
<%@ taglib uri="http://liferay.com/tld/ui" prefix="liferay-ui" %>

and then i used the tag (for example <liferay-ui:ratings-score score="3.2" />)

I have found out, that the JavaScript for this tag is in portal.js.
I don't know, if my own portlets can access the portal.js.

I hope anyone has an idea.

Thanks

Jörg
saumil nitin baxi, modificado 15 Anos atrás.

RE: using the tag <liferay-ui:ratings-score/> in portlets

Junior Member Postagens: 31 Data de Entrada: 07/04/08 Postagens Recentes
Joerg Schaefer:
Hi,
i want to use the nice tag <liferay-ui:ratings-score/> in my own portlet.
I've tried it, but i get JavaScript-Errors (invalid object initializer).
Is it possible to use the tag in own portlets?
What are the steps i have to do?

In my test i put the both taglibs in my jsp header

<%@ taglib uri="http://liferay.com/tld/theme" prefix="liferay-theme" %>
<%@ taglib uri="http://liferay.com/tld/ui" prefix="liferay-ui" %>

and then i used the tag (for example <liferay-ui:ratings-score score="3.2" />)

I have found out, that the JavaScript for this tag is in portal.js.
I don't know, if my own portlets can access the portal.js.

I hope anyone has an idea.

Thanks

Jörg


Yes you can do it in your own portlet. Make sure you have everything_packed.js in your page. Is your theme classic or your home made theme? turn into classic if it is not and try again ..
thumbnail
Bruno Farache, modificado 15 Anos atrás.

RE: using the tag <liferay-ui:ratings-score/> in portlets

Liferay Master Postagens: 603 Data de Entrada: 14/05/07 Postagens Recentes
Joerg, your auto-reply tool has been spamming this forum and unfortunately we don't automatically detect these type of messages, I had to delete them manually and ban you temporarily.

Please, let me know when you are back or turn this off so I can unban you. You can leave me a message in my wall:
http://www.liferay.com/web/bfarache

Have a nice vacation emoticon
thumbnail
Mazhar Alam, modificado 11 Anos atrás.

RE: using the tag <liferay-ui:ratings-score/> in portlets

Regular Member Postagens: 191 Data de Entrada: 25/11/11 Postagens Recentes
Hi You can use this code instead-
String className = Cause.class.getName();
long classPK = cause.getCauseId();
ratingsStats = RatingsStatsLocalServiceUtil.getStats(className, classPK);
avgScore = ratingsStats.getAverageScore();

and then print here-
<liferay-ui:ratings-score
score ="<%=avgScore %>" />
HTH
pawan chauhan, modificado 11 Anos atrás.

RE: using the tag <liferay-ui:ratings-score/> in portlets

Junior Member Postagens: 75 Data de Entrada: 08/10/12 Postagens Recentes
Hi Mazhar,

I have used your code and ity works very smoothly emoticon..
But now i am doing an inter-portlet thing..
My two portlets work on the same class (say Announcement)...
Is there any one i can link them.

Please Advise,
Regards,
Pawan Chauhan.