[FIX]Fixed the issue of last element of grouped row removed, due to which grouped total information also got lost.

bzr revid: msh@openerp.com-20130703131223-bwu6hl8v5y5sjt5w
This commit is contained in:
Mohammed Shekha 2013-07-03 18:42:23 +05:30
parent 7e4776f2f2
commit 2e3ec5e2e9
1 changed files with 2 additions and 1 deletions

View File

@ -1280,7 +1280,8 @@ instance.web.ListView.Groups = instance.web.Class.extend( /** @lends instance.we
}
},
close: function () {
this.$row.children().last().empty();
this.$row.children().last().find('button').remove();
this.$row.children().last().find('span').remove();
this.records.reset();
},
/**