I'm using javascript to add 160 rows into a table with 10 columns. If I do:
var cellText = document.createTextNode(value);
cell.appendChild(cellText);
row.appendChild(cell);
It takes no time at all to render, but if I switch to cell.innerHTML = value, it takes significantly slower to render. Do we have another option to render HTML elements inside a cell faster?
BTW, the problem appears to be only on IE (IE 11 to be more specific). It's fine in Google Chrome.
I'm using .NET AjaxToolkit.