Reputation: 1039
Ive been looking for all p:ajax events relateds with p:selectCheckBoxMenu
I need to click on selectCheckBoxMenu dropdown arrow and load again my object from bean.
Google it but with no success.
thanks in advance stack members.
Upvotes: 5
Views: 20377
Reputation: 1130
Even in Primefaces 7.0.3 it's still "change" as default event and it seems "toggleSelect" for "changed all with the toggle everything checkbox".
Upvotes: 0
Reputation: 1251
I used this on primefaces 5.2
<p:ajax event="change" listener="#{mb.yourlistener}" />
Upvotes: 5
Reputation: 909
Check the source code for your specific primefaces version, for example for version 3.5 , see http://grepcode.com/file/repository.primefaces.org/org.primefaces/primefaces/3.5/org/primefaces/component/selectcheckboxmenu/SelectCheckboxMenu.java#SelectCheckboxMenu.0EVENT_NAMES
Upvotes: 1
Reputation: 1039
Got the right answer from primefaces forum. Updating this post for further queries.
http://www.primefaces.org/showcase/ui/pprSelect.jsf
http://forum.primefaces.org/viewtopic.php?f=3&t=31975
Upvotes: 1