This commit is contained in:
2020-04-02 20:16:28 +00:00
parent 7780c41117
commit e44362d6ff
7 changed files with 120 additions and 101 deletions

View File

@@ -64,6 +64,9 @@
<template v-slot:body="{ items }">
<tbody>
<tr v-for="item in items" :key="item.id">
{{
item.id
}}
<template v-if="showSelect">
<td>
<v-checkbox
@@ -613,6 +616,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
let o = { id: row[0].v, columns: {} };
debugger;
for (let iColumn = 0; iColumn < row.length; iColumn++) {
let column = row[iColumn];