Posts by Kelve Aragão • 21 points
3 posts
-
0
votes2
answers137
viewsA: How to return 2 decimals in a monetary value with jQuery?
Do so friend: $(".subtotal2").text((23.90).toFixed(2)); $(".todo_total").text((sum*12).toFixed(2));
-
0
votes2
answers1269
viewsA: How to insert inpuText data into a list using JSF?
Below is a simple example: <h:selectOneMenu value="#{opcao.idOpcao}"> <f:selectItems value="#{questaoBean.opcoes}" var="opcao" itemValue="#{opcao.id}" itemLabel="#{opcao.nameOpcao}" />…
-
2
votes1
answer57
viewsA: JSP: Item page not found
It shall be indicated in items the bean and the method, without the get at the beginning, which returns the list of proposals, example: items="${managedBean.listaDePropostas}". To show the result…