Sencha Touch 2.1.0-rc2 NodeInterface.js
When appendChild is called with an array, the additional parameters are not passed when the array is parsed and appendChild is called recursively.
The code should be:
Code:if (Ext.isArray(node)) {
for (i = 0, ln = node.length; i < ln; i++) {
me.appendChild(node[i] , suppressEvents, suppressNodeUpdate);
}
} else {
