Posts by ramirescm • 21 points
2 posts
-
0
votes3
answers1169
viewsA: How to load the list of items from p:selectOneMenu when clicking to open the dropdown?
You can fire an ajax request that updates the list.. <p:selectOneMenu value="#{bean.object.property}" id="myId" required="true"> <f:selectItems value="#{bean.list}" /> <f:ajax…
-
2
votes0
answers512
viewsQ: Primefaces and Eclipse Ctrl + click does not work
On jsf buttons of type h:commandButton and h:commandLink navigation by Ctrl + click works perfectly. <h:commandButton value="Edit" action="#{bean.edit}" /> But when I use the tags of the first…