6

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}"/>
nuno
  • 1,771
  • 1
  • 19
  • 48
Marin
  • 1,010
  • 1
  • 10
  • 37

1 Answers1

1

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;
Hambone
  • 15,600
  • 8
  • 46
  • 69
Alan Sousa
  • 26
  • 1