Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question

1 Answer

Why do you need to provide additional listeners when the framework has already provided you with such?

If your goal is to use jQuery you just put your handler in a js file accessible from the window global scope.

function myChangeHandler(that) {
    //wrap the element with jQuery
    var select = jQuery(that);
    //Get the div parent. The actual wrapper of the `selection-menu` widget markup
    var selectMenu = select.parents('div.ui-selectonemenu');
    //From here I can manipulate any HTML child element using jQuery
    jQuery('label.ui-selectonemenu-label', selectMenu).text('mooo');
}

Then call your handler onchange, passing the selectOneMenu as parameter

<p:selectOneMenu id="myList" onchange="myChangeHandler(this)">
    <f:selectItem itemLabel="val1" itemValue="val1" />
    <f:selectItem itemLabel="val2" itemValue="val2" />
</p:selectOneMenu>
share|improve this answer
My goal is to detect "unsaved changes on the page". Therefore the onchange event is bound to all *:inputs in the page. The script will be placed in a common template. Putting a changehandler to every p:selectOneMenu in all pages is currently less desired. – Uluk Biy Jan 22 at 14:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.