This commit is contained in:
@@ -545,7 +545,7 @@ function buildRecords(listData, columndefinitions) {
|
|||||||
//iterate row and build object representing row data keyed to index
|
//iterate row and build object representing row data keyed to index
|
||||||
//first column is the default column which sets the id for the row
|
//first column is the default column which sets the id for the row
|
||||||
var o = { id: row[0].v, columns: {} };
|
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 column = row[iColumn];
|
||||||
|
|
||||||
var dataType = columndefinitions[iColumn].dt;
|
var dataType = columndefinitions[iColumn].dt;
|
||||||
|
|||||||
Reference in New Issue
Block a user