Foros de discusión

How to get language property value inside javascript function ?

thumbnail
Tejas Kanani, modificado hace 11 años.

How to get language property value inside javascript function ?

Liferay Master Mensajes: 654 Fecha de incorporación: 6/01/09 Mensajes recientes
Hi,

I want to get language property value inside my javascript function, and after searching in forums found below code for the same.
Liferay.Language.get("key")

When I've used the above code in my Custom Plugins portlet, It just returning me the Key itself instead of the value from my Language_en.properties file. After some more googling found that it only works with portal level language property and not portlet level.

I am using Liferay 6.1.

Is anyone came across such issue and able to find a solution for this problem ?
Any pointer would be appreciated.

Thanks,
Tejas
Oliver Bayer, modificado hace 11 años.

RE: How to get language property value inside javascript function ?

Liferay Master Mensajes: 894 Fecha de incorporación: 18/02/09 Mensajes recientes
Hi Tejas,

you can override or add your language keys into the ext-environment (ext-impl, content). I know it's some sort of a hack but I think it's the quickest solution to get it working emoticon. Otherwise you should check if it's working in the current trunk, look out for maybe already created jira issues or you can try debugging...

Greets Oli
thumbnail
Tejas Kanani, modificado hace 11 años.

RE: How to get language property value inside javascript function ?

Liferay Master Mensajes: 654 Fecha de incorporación: 6/01/09 Mensajes recientes
Thanks Oliver for quick reply.

But I would like to avoid making changes in ext for simply displaying the language property for my custom portlet. As in future if i want to add any more property to my portlet, everytime I need to make changes in ext and rebuild it, which I want to avoid.

And I've also checked in JIRA and found one issue raised for the same. But its found closed without any useful solution.
http://issues.liferay.com/browse/LPS-14664

Anybody from Liferay Staff Member has any solution/updates for this issue ?

Thanks,
Tejas
Ali Reza Akbarian, modificado hace 11 años.

RE: How to get language property value inside javascript function ?

New Member Mensajes: 6 Fecha de incorporación: 7/04/12 Mensajes recientes
Hi Tejas

Try This :
LanguageUtil.get(locale, key);

Thanks.
Shashant Panwar, modificado hace 10 años.

RE: How to get language property value inside javascript function ?

Junior Member Mensajes: 28 Fecha de incorporación: 21/09/12 Mensajes recientes
Hi Tejas,
I hope you resolved the issue. But if not then try using Liferay.Language.get('key'); instead Liferay.Language.get("key"). I got the same issue which you got and resolved it with above solution.

Regards,
Shashant
kranthi kumar, modificado hace 5 años.

RE: How to get language property value inside javascript function ?

New Member Mensaje: 1 Fecha de incorporación: 8/11/17 Mensajes recientes
Thank you Tejas......
Your Approach is working fine in liferay dxp....
thumbnail
Pankaj Kathiriya, modificado hace 10 años.

RE: How to get language property value inside javascript function ?

Liferay Master Mensajes: 722 Fecha de incorporación: 5/08/10 Mensajes recientes
Use liferay-ui:message tag in js.

Sorry for brief ,sent from mobile.
Shashant Panwar, modificado hace 10 años.

RE: How to get language property value inside javascript function ?

Junior Member Mensajes: 28 Fecha de incorporación: 21/09/12 Mensajes recientes
Pankaj Kathiriya:
Use liferay-ui:message tag in js.

Sorry for brief ,sent from mobile.


Can you please paste the syntax, I tried but liferay-ui:message is not working for me in js. Finally I end up using Liferay.Language.get('key');

Regards,
Shashant
thumbnail
Pankaj Kathiriya, modificado hace 10 años.

RE: How to get language property value inside javascript function ?

Liferay Master Mensajes: 722 Fecha de incorporación: 5/08/10 Mensajes recientes
<script>
var message="<liferay-ui:message key='please-enter-a-valid-screen-name'/>";
</script>
Sandeep Singh, modificado hace 10 años.

RE: How to get language property value inside javascript function ?

New Member Mensajes: 4 Fecha de incorporación: 2/12/11 Mensajes recientes
Thanks Shashant this worked for " Liferay.Language.get('key'); "

Thanks,
Sandeep