[IMP] client action 'reload': optionally open a given menu_id

bzr revid: rco@openerp.com-20120515133523-78amsdjhtbzr6akj
This commit is contained in:
Raphael Collet 2012-05-15 15:35:23 +02:00
parent 0a4dbe154c
commit d3daae2716
1 changed files with 13 additions and 2 deletions

View File

@ -1319,13 +1319,24 @@ instance.web.str_to_xml = function(s) {
instance.web.client_actions = new instance.web.Registry();
/**
* Client action to reload the whole interface; refreshes the menu and reloads the current view
* 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() {
window.location.reload();
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();
}
}
});