Posts by gvieira • 36 points
3 posts
-
0
votes1
answer226
views -
1
votes1
answer622
viewsA: How to take refresh from the full page when using the Fileupload component of the first faces
The only way you can maintain the status of the page (without refresh) when making a submit is via AJAX. There is no attribute ajax in the component p:fileUpload. To activate ajax you must change…
-
1
votes1
answer80
viewsA: JSF change information in XHTML
The best would be to use enum. As it stands, the solution is this:: 1 - Create this method in your class: public String permissaoAcessoFormatada(){ switch (permissaoAcesso) { case "1": return…