Posts by Tiago Vieira Dos Santos • 136 points
2 posts
-
1
votes1
answer426
viewsA: How to make a Spinner that only accepts numbers in Primefaces?
Good afternoon, you can solve this problem using javascript as below: <script type="text/javascript"> function onlyNumbers(data){ data.value = data.value.replace(/[^0-9]/g,''); };…
-
1
votes2
answers1597
viewsA: Primefaces, button requires two clicks to perform action
Good afternoon, could try using the attribute process="@this" and partialSubmit="true"? if the problem persists try only to test use the procedure as below: Change your delete method to receive a…