Browse Source

Update the chatter widget after closing the composition wizard

pull/279/head
Peter Hahn 9 years ago
parent
commit
390f078636
  1. 10
      web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js

10
web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js

@ -51,8 +51,14 @@ instance.web.form.FieldEmailIntern = instance.web.form.FieldChar.extend({
default_res_id: fm.datarecord.id,
},
on_close: function(){
/* Todo: refresh the chatter widget here
*/
// refresh the chatter widget here
$.each(self.view.getChildren(),
function(index, value){
if(value.widget=='mail_thread'){
value.root.thread.message_fetch()
}
}
);
},
}
);

Loading…
Cancel
Save