odoo/addons/base_hello/static/openerp/base_hello.js

19 lines
514 B
JavaScript
Raw Normal View History

/*---------------------------------------------------------
* OpenERP base_hello (Example module)
*---------------------------------------------------------*/
openerp.base_hello = function(openerp) {
openerp.base.SearchView = openerp.base.SearchView.extend({
init:function() {
this._super.apply(this,arguments);
this.on_search.add(function(){alert('hello')});
},
});
// here you may tweak globals object, if any, and play with on_* or do_* callbacks on them
}
// vim:et fdc=0 fdl=0: