This commit is contained in:
2020-02-26 20:12:23 +00:00
parent 480cbc656d
commit b15efdcf19

View File

@@ -545,7 +545,7 @@ function buildRecords(listData, columndefinitions) {
//iterate row and build object representing row data keyed to index
//first column is the default column which sets the id for the row
var o = { id: row[0].v, columns: {} };
for (var iColumn = 1; iColumn < row.length; iColumn++) {
for (var iColumn = 0; iColumn < row.length; iColumn++) {
var column = row[iColumn];
var dataType = columndefinitions[iColumn].dt;