[MERGE] reload client action

bzr revid: al@openerp.com-20120515141015-vass9xrvbzp2xl8k
This commit is contained in:
Antony Lesuisse 2012-05-15 16:10:15 +02:00
commit 5a235f97d2
1 changed files with 22 additions and 0 deletions

View File

@ -1266,6 +1266,28 @@ instance.web.str_to_xml = function(s) {
*/
instance.web.client_actions = new instance.web.Registry();
/**
* Client action to reload the whole interface.
* If params has an entry 'menu_id', it opens the given menu entry.
*/
instance.web.client_actions.add("reload", "instance.web.Reload");
instance.web.Reload = instance.web.Widget.extend({
init: function(parent, params) {
this._super(parent);
this.menu_id = (params && params.menu_id) || false;
},
start: function() {
if (this.menu_id) {
// open the given menu id
var url_without_fragment = window.location.toString().split("#", 1)[0];
window.location = url_without_fragment + "#menu_id=" + this.menu_id;
} else {
window.location.reload();
}
}
});
/**
* Registry for all the main views
*/