I'm looking for a way to override some openerp web js core functions such as "on_logout".

The docs lack of instructions (as you can see in my post) and the helloworld module tells you that you can do it like

openerp.web_hello = function(openerp) {

openerp.web.SearchView = openerp.web.SearchView.extend({
    init:function() {
        this._super.apply(this,arguments);
        this.on_search.add(function(){console.log('hello');});
    }
});

// here you may tweak globals object, if any, and play with on_* or do_* callbacks on them

openerp.web.Login = openerp.web.Login.extend({
    start: function() {
        console.log('Hello there');
        this._super.apply(this,arguments);
    }
});

};

In my module I'm doing this:

openerp.mytest = function(openerp){

    openerp.web.WebClient = openerp.web.WebClient.extend({
        on_logout: function() {
            alert('mine');
            [...]
        },
    });
}

I know js is loaded since putting an alert outside this definition works.

What's wrong here?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

That's a bit of a special issue since you want to alter the prototype (the class, if you will) of an object which is already instantiated (a WebClient instance is the root of the system, so it's probably already there by the time your code is loaded, therefore creating a new WebClient "class" won't alter the existing instance).

In that case, you can't replace the class with a subclass, you have to re-open the class (in a manner similar to Ruby), for that there is an include method on class objects, which should work:

openerp.mytest = function(openerp) {
    openerp.web.WebClient.include({
        on_logout: function() {
            alert('mine');
            this._super.apply(this, arguments);
        }
    });
}

(as in Ruby, this._super is bound to the method you're replacing, if any, for in-place class alterations)

If you check the view_list_editable.js implementation file, it provides examples of that since it needs to reopen and alter the listview's code in order to add editability.

link|improve this answer
Hi, thanks for answering. I just tried this but is not working. It continues to use the original one. FWIW I just pulled the latest release. – simahawk Jan 11 at 11:13
1  
Oh hell, I'd forgotten that this was a "callback" (on_* and do_* methods are bound directly to instances during init if the class extends openerp.web.CallbackEnabled somehow), and WebClient is instanced before any module is loaded. Your only solution is to use raw javascript, and access openerp.webclient (the webclient instance for this session, if any) and alter it directly. Something like openerp.webclient.on_logout.add_first(function () { console.log('my logout')}); works. Replacing on_logout likely will not work because the events are bound eagerly (a bad idea). – xmo Jan 11 at 12:50
I tried: openerp.mytest = function(openerp) { openerp.webclient.on_logout.add_first( function () { alert('thatsme!'); } ); } but it's seem useless as well :( – simahawk Jan 11 at 13:57
OK now that's downright weird, that's basically what I added to the "hello" test/demo module: openerp.web_hello = function(openerp) { openerp.webclient.on_logout.add_first(function () {alert('thatsme!');}); and it displays the alert correctly on logout. Are you sure you don't have a javascript error which prevents this code from loading or executing? – xmo Jan 11 at 15:07
OK, I got it! Here are the reason why it didn't work: a) you must not use "openerp.web.WebClient" but its alias "openerp.webclient" (as you've done in last example) - b) you MUST use your real module's name for the main function declaration. Mine was not really "mytest". I used that just to ask the question and try it. That's my fault, since it's one of the few things pointed out into the docs. – simahawk Jan 11 at 18:09
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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