Posts by Igor Leonardo Pereira da Silva • 91 points
8 posts
-
0
votes3
answers131
viewsA: Html, icon respecting page background color
Thanks for the answers, guys. The best option I could find was this one: <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <i…
-
0
votes3
answers131
viewsQ: Html, icon respecting page background color
I am inserting on my page an image that has an event, this image has a drawing, and the background of the drawing is white, I would like this background of this drawing to be filled with the same…
-
0
votes1
answer53
viewsQ: Code updates not running during Debug, Eclipse
I work with Eclipse and Wildfly. Well, my question is simple: I made some kind of change to the code, however, when doing Debug I noticed that this change was not being executed, as if Eclipse…
-
5
votes1
answer230
viewsQ: Spring and EJB have the same features?
Spring and EJB have the same features? If not, you can use both in the same application?
-
1
votes3
answers1043
viewsA: Delete registration form, JSF Primefaces
Thanks guys, all the tips worked. I did so. <p:commandButton value="Limpar" action= "#{UsuarioMB.limpar}" update=":formUser" process="@this" > </p:commandButton> if…
-
1
votes3
answers1043
viewsQ: Delete registration form, JSF Primefaces
I’m using JSF with primefaces. I have a registration screen, and I have a button to delete the form data, would be a button to clear the form to make another registration. However, this wipe button…
-
1
votes2
answers1103
viewsA: Send selected record from a p:datatable to the form, jsf primefaces
Solved. I got people, follow the solution <p:dataTable id="userTabela" var="usuario" value="#{UsuarioMB.lista}" paginator="true" rows="10" emptyMessage="Não há registros na lista"…
-
1
votes2
answers1103
viewsQ: Send selected record from a p:datatable to the form, jsf primefaces
Hi, I’m new here, and I’m migrating from Struts 1 to JSF. I am developing in JSF a user registration screen. I would like it when I select a record from p:dataTable, the data from that selected…