Fórum

How to get language property value inside javascript function ?

thumbnail
Tejas Kanani, modificado 11 Anos atrás.

How to get language property value inside javascript function ?

Liferay Master Postagens: 654 Data de Entrada: 06/01/09 Postagens Recentes
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 11 Anos atrás.

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

Liferay Master Postagens: 894 Data de Entrada: 18/02/09 Postagens Recentes
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 11 Anos atrás.

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

Liferay Master Postagens: 654 Data de Entrada: 06/01/09 Postagens Recentes
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 11 Anos atrás.

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

New Member Postagens: 6 Data de Entrada: 07/04/12 Postagens Recentes
Hi Tejas

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

Thanks.
Shashant Panwar, modificado 10 Anos atrás.

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

Junior Member Postagens: 28 Data de Entrada: 21/09/12 Postagens Recentes
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 6 Anos atrás.

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

New Member Mensagem: 1 Data de Entrada: 08/11/17 Postagens Recentes
Thank you Tejas......
Your Approach is working fine in liferay dxp....
thumbnail
Pankaj Kathiriya, modificado 10 Anos atrás.

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

Liferay Master Postagens: 722 Data de Entrada: 05/08/10 Postagens Recentes
Use liferay-ui:message tag in js.

Sorry for brief ,sent from mobile.
Shashant Panwar, modificado 10 Anos atrás.

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

Junior Member Postagens: 28 Data de Entrada: 21/09/12 Postagens Recentes
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 10 Anos atrás.

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

Liferay Master Postagens: 722 Data de Entrada: 05/08/10 Postagens Recentes
<script>
var message="<liferay-ui:message key='please-enter-a-valid-screen-name'/>";
</script>
Sandeep Singh, modificado 10 Anos atrás.

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

New Member Postagens: 4 Data de Entrada: 02/12/11 Postagens Recentes
Thanks Shashant this worked for " Liferay.Language.get('key'); "

Thanks,
Sandeep