Posts by Átila • 1 point
3 posts
-
-2
votes4
answers623
viewsA: Print ranges of numbers with final 5
Maniero’s answer is perfect. I would just like to add an option if you don’t want to change your loop, that is, iterating all the numbers from 0 to 200. One way to determine if the last number is…
-
0
votes2
answers82
viewsA: How to update an external element to p:datatable with selectionMode="single"
Hello! I don’t know if this is the case, but based on the code you put, I believe it may be the question of how the element id is formed when the page is rendered. For example: If your view looks…
-
0
votes1
answer301
viewsA: How to disable a commandButton in Primefaces according to the return of a Boolean method implemented in the bean?
In "disabled" you must reference a property of your class and not a method. Then, in your class, create the property "temRegistros": private Boolean temRegistros; Create get and set for this…