This commit is contained in:
@@ -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];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user