Can I "append" two infotables without loop?
If I have two infotables from the same datashape and I want to make a third one given by the two, is it possible to append them in some "smart way" without doing this:
var tableLength = table1.rows.length;
for (var x = 0; x < tableLength; x++){
var row = table1.rows
; table3.AddRow(row);
}
var tableLength = table2.rows.length;
for (var x = 0; x < tableLength; x++){
var row = table2.rows
; table3.AddRow(row);
}
result = table3;
?
Thanks


