[IMP] vieweditor :- used setAttribute and removeAttribute instead of attr.

bzr revid: ysa@tinyerp.com-20111117060520-x0z8xvb4q5s8s1yt
This commit is contained in:
Yogesh (OpenERP) 2011-11-17 11:35:20 +05:30
parent a2bc7dc12c
commit 1d76679c4a
1 changed files with 2 additions and 1 deletions

View File

@ -583,7 +583,8 @@ openerp.web.ViewEditor = openerp.web.Widget.extend({
child_list.splice(index-1, 0, re_insert_obj[0]);
} else if (move_direct == "update_node") {
_.each(update_values, function(val){
$(arch1).attr(val[0],val[1]);
if (val[1]) $(arch1)[0].setAttribute(val[0], val[1]);
else $(arch1)[0].removeAttribute(val[0]);
});
var new_obj = self.create_View_Node(arch1);
new_obj.id = obj.id,new_obj.child_id = obj.child_id;