Forums de discussion

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

Joerg Schaefer, modifié il y a 15 années.

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

Junior Member Publications: 60 Date d'inscription: 05/05/08 Publications récentes
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, modifié il y a 15 années.

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

Junior Member Publications: 31 Date d'inscription: 07/04/08 Publications récentes
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, modifié il y a 15 années.

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

Liferay Master Publications: 603 Date d'inscription: 14/05/07 Publications récentes
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, modifié il y a 11 années.

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

Regular Member Publications: 191 Date d'inscription: 25/11/11 Publications récentes
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, modifié il y a 11 années.

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

Junior Member Publications: 75 Date d'inscription: 08/10/12 Publications récentes
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.