It seems Primefaces p:selectOneMenu component wraps the rendered HTML <select> tag in a div and shows the selected item as a different label. The changes made by the user are reflected to original <select> by javascript I guess, resulting the onchange event binded to <select> not to be worked. Thus my following binding of onchange event for all :inputs is not working for p:selectOneMenus.
function applyChangeHandler() {
$(':input').on('change', function() {
console.log('on change: ' + this.id);
});
}
However onchange attribute of p:selectOneMenu is being fired. So Primefaces triggers this handler under the hood (again I guess).
<p:selectOneMenu id="myList" onchange="console.log('selectOneMenu')">
<f:selectItem itemLabel="val1" itemValue="val1"/>
<f:selectItem itemLabel="val2" itemValue="val2"/>
</p:selectOneMenu>
So my requirement is to somehow bind the onchange handler to all p:selectOneMenus from applyChangeHandler() function above. Or it may be triggerred manually with Primefaces specific API or other ways which I expect from you guys to share with. Otherwise a quick workaround will be to use h:selectOneMenu instead.
My goal is to detect "unsaved changes on the page". So script above will be placed in a common template as:
<p:outputPanel id="sc" autoUpdate="true">
<script type="text/javascript">
applyChangeHandler();
</script>
</p:outputPanel>