Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Primefaces extensions DocumentViewer in hyphenated languages not working

I use pe:documentViewer for display documents and set 'locale' like pt (pt_pt, pt_br, pt-pt or pt-br) but nothing happens and the actions continues in english. why?

My code is:

<pe:documentViewer locale="pt" height="#{previewHeight}" value="#{previewComponent.file}"/>
like image 351
Marin Avatar asked Mar 27 '15 14:03

Marin


1 Answers

Solve by changing the locale javascript as it is a bug Primefaces Extension will not find the pt-BR,pt-PT:

&lt;pe:documentViewer value="#{document}" locale="pt" height="800"/&gt;

&lt;script type="text/javascript"&gt;

var src = document.getElementsByTagName("iframe")[0].src.replace('#locale=pt','#locale=pt-BR');

document.getElementsByTagName("iframe")[0].setAttribute('src', src);

&lt;/script&gt;
like image 50
Alan Sousa Avatar answered Jan 02 '23 13:01

Alan Sousa