I create elements with Ext.element as follows:
var table = new Ext.Element(document.createElement('table')); for(n=0;n<5;n++) { row = new Ext.Element(document.createElement('tr')); for(x=0;x<4;x++) { col = new Ext.Element(document.createElement('td')); col.update('cell text '+x); row.appendChild(col); } table.appendChild(row); } Ext.fly('data').replaceWith(table);
It works I'm FF, but not in IE, why?
source share