You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Mathias Markl 7ecff272b4 . 6 years ago
..
doc german 6 years ago
i18n german 6 years ago
static MuK Preview 7 years ago
template update 7 years ago
LICENSE update 7 years ago
README.md MuK Web Client 7 years ago
__init__.py update 7 years ago
__manifest__.py german 6 years ago

README.md

MuK Web Client

Extends the Odoo web client to include bus channels. Channels can be created to listen to Odoo bus notifications. To add a channel listener to the client just extend the web client and declare a new bus channel.

Example

var WebClient = require('web.WebClient');
var session = require('web.session');	

WebClient.include({
	show_application: function() {
		var channel = session.db + '_mychannel';
        this.bus_declare_channel(channel, this.doSomething);
        return this._super();
    },
	doSomething: function(message) {
		...
	}
});