I have an application which is used for data analysis and I\'m having a few performance issues with the creation of the table. The data is extracted from documents and it is
Answering to get formatting
What happens if you do
for(var i in data){
var record = data[i];
var recordId = record.id;
rows += '';
rows += '' + recordId + ' ';
rows += '' + data[i].status + ' ';
rows += '' + record.name + ' ';
rows += '';
rows += '';
rows += '';
rows += ' ';
rows += '' + record.origin + ' ';
rows += ' ';
}//end for