Return DOM node so name/ID changes can be applied (handled by caller)

This commit is contained in:
Nathan Gray 2011-10-24 22:52:01 +00:00
parent 5e12553f71
commit 0238387c5c
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ var et2_box = et2_baseWidget.extend([et2_IDetachedDOM], {
getDetachedNodes: function()
{
return [];
return [this.getDOMNode()];
},
setDetachedAttributes: function(_nodes, _values)

View File

@ -610,7 +610,7 @@ var et2_grid = et2_DOMWidget.extend([et2_IDetachedDOM], {
getDetachedNodes: function()
{
return [];
return [this.getDOMNode()];
},
setDetachedAttributes: function(_nodes, _values)