Posts by Vinicius Vasconcelos • 43 points
7 posts
-
0
votes3
answers97
viewsA: Primefaces Autocomplete Component "disappears from the screen" after update in Managedbean
Good afternoon, Adriano. Thank you for trying to help. "from what I understand you want to select an autocomplete item and add it to your listing.." In that case, no! I want to read the code of a…
-
0
votes3
answers97
viewsA: Primefaces Autocomplete Component "disappears from the screen" after update in Managedbean
on the page I have on value of automplete: value="#{vendaControlador.produtoDaVenda.produto}" In the method produtosSugeridos(String query) i put: produtoDaVenda.setQuantidade(1.0);…
-
0
votes3
answers97
viewsQ: Primefaces Autocomplete Component "disappears from the screen" after update in Managedbean
Good afternoon, I am trying to insert a product automatically after reading the code and update the components on managedBean. However, the component autocomplete disappears from the screen after I…
-
1
votes0
answers26
viewsQ: How to view Dynamic Group from Jaspersoft Stuio on the same line?
I’m trying to make a report and I’d like to exhibit from detail more than 1 value, so they are dynamic. Example of my output: Grupo1 valor1 valor2 valor 3 Grupo2 valor 1 valor2 valor3 Goal: Grupo1…
-
0
votes0
answers26
viewsQ: Dynamic Datatable with Primefaces 6 + Display Objects in the Same Line
Guys, I looked at the primefaces showcase and I couldn’t find a solution. My question is the following I have a list of open accounts and would like to click open a page showing the open constants,…
-
0
votes0
answers92
viewsQ: Change object in p:dialog taking object from datatable primeFaces
I have a DataTable with a button to add a note to the service. I can pick up the object, step to the Dialog, but my save button does not upadate the object <body> <ui:composition…
-
3
votes1
answer43
viewsQ: Sort by month without repeating the year
I would like to add the total sales in the month, but without repeating the year. select EXTRACT(year FROM v.dataVenda), case when EXTRACT(MONTH FROM v.dataVenda) =1 then sum(v.valorvenda) else 0…