Posts by Felipe • 33 points
5 posts
-
1
votes1
answer87
viewsA: Slowness in the first access to the newly hosted site
In First access your site must be starting Hibernate, when Hibernate starts it checks the persistence.xml, checks the connection to the database , checks the tables etc, so in the first access it is…
-
1
votes1
answer621
viewsA: Update event in "p:commandLink" component does not render
Test as follows: update="@form:gerSup" In some versions jsf works with space. update="@form gerSup" Also test in place of @form the id of your form. Take the test and tell us if it worked.…
-
0
votes1
answer162
viewsA: Dialog with datatable is not displayed
Pass the <p:Dialog out of the </p:dataTable> then change onClick to oncomplete="PF('modal').show()" your code will look like this. Take the test and see if it works that way.…
-
0
votes1
answer631
viewsQ: JSF + Primefaces update component when switching pagination
<p:dataList paginator="true" value="{bean.lista}" var="lista"> </:dataList> <h:outputText value="qualquerCoisa" id="teste"/> How do I update outputText 'test' every time the…
-
1
votes1
answer627
viewsQ: <f:setPropertyActionListener does not work
I have the following xhtml page with the boot "Delete". <ui:composition template="WEB-INF/templates/_perfil-template.xhtml" xmlns="http://www.w3.org/1999/xhtml"…