最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How do I define a oncomplete event on a CommandButton in PrimeFaces with a closure? - Stack Overflow

programmeradmin1浏览0评论

I'm extending a part of a PrimeFaces application with some JavaScript interactivity. It all starts with CommandButton which gets some data from the bean and calls then JavaScript. Currently, it looks something like this:

<p:mandButton actionListener="#{myBean.doSomething}"
                                 onplete="doSomethingSimple()"
                                 value="Do something" />

Naturally, this is very simple function-based programming. There is no context, no closures, no OOP (if I needed some). I'd like to attach a normal JavaScript event to the CommandButton, e.g. like this with jQuery:

$('.myCommandButton').on('plete', function () {
     ...
})

However, plete is not a DOM event and basically, only PrimeFaces knows when it's to be called. Is there still a way to replace attribute-based scripting with a "normal" JavaScript event handling?

I'm extending a part of a PrimeFaces application with some JavaScript interactivity. It all starts with CommandButton which gets some data from the bean and calls then JavaScript. Currently, it looks something like this:

<p:mandButton actionListener="#{myBean.doSomething}"
                                 onplete="doSomethingSimple()"
                                 value="Do something" />

Naturally, this is very simple function-based programming. There is no context, no closures, no OOP (if I needed some). I'd like to attach a normal JavaScript event to the CommandButton, e.g. like this with jQuery:

$('.myCommandButton').on('plete', function () {
     ...
})

However, plete is not a DOM event and basically, only PrimeFaces knows when it's to be called. Is there still a way to replace attribute-based scripting with a "normal" JavaScript event handling?

Share Improve this question asked Sep 21, 2013 at 20:40 Nikolai ProkoschenkoNikolai Prokoschenko 8,77514 gold badges63 silver badges101 bronze badges 1
  • If you will find a way to pass source element id (or something) you could use the <p:ajaxStatus primefaces/showcase/ui/… , just like the way JSF jsf.ajax.addOnEvent can be used – Daniel Commented Sep 22, 2013 at 11:24
Add a ment  | 

2 Answers 2

Reset to default 7

PrimeFaces uses under the covers jQuery to deal with ajax requests. So, could just hook on the generic $.ajaxComplete() handler. The source is available as property of 3rd argument options:

$(document).ajaxComplete(function(event, xhr, options) {
    var $source = $("[id='" + options.source + "']");

    if ($source.hasClass("myCommandButton")) {
        // ...
    }
});

Or, if you're using PrimeFaces 4.0 or newer, hook on PrimeFaces-specific pfAjaxComplete event:

$(document).on("pfAjaxComplete", function(event, xhr, options) {
    var $source = $("[id='" + options.source + "']");

    if ($source.hasClass("myCommandButton")) {
        // ...
    }
});

Or, if you're mixing PrimeFaces with "plain" HTML/jQuery and would like to apply on both:

$(document).on("ajaxComplete pfAjaxComplete", function(event, xhr, options) {
    var $source = $("[id='" + options.source + "']");

    if ($source.hasClass("myCommandButton")) {
        // ...
    }
});

Regardless of the way, the $source represents thus the jQuery object of the original HTML DOM element on which the ajax action was been triggered, which is in case of this particular example the <p:mandButton> itself. This offers you the possibility to delegate it further to the desired handler by e.g. examining element's class.

With PrimeFaces 4.0, ajaxComplete was replaced with pfAjaxComplete. See Issue 5933 for more details.

That being said, I was able to get it to work as follows:

$(document).on('pfAjaxComplete', function() {
    foo.bar()
});
发布评论

评论列表(0)

  1. 暂无评论