This commit is contained in:
Jan Prochazka 2022-10-02 15:43:00 +02:00
parent 7a3c46b691
commit 1d85a17533
2 changed files with 2 additions and 1 deletions

View File

@ -200,7 +200,7 @@ export class PerspectiveDisplay {
for (const sourceRow of sourceRows) {
// console.log('PROCESS SOURCE', sourceRow);
// row.startIndex = startIndex;
const rowData = columnNodes.map(node => sourceRow[node.fieldName]);
const rowData = columnNodes.map(node => sourceRow[node.columnName]);
const subRowCollections = [];
for (const node of treeNodes) {

View File

@ -606,6 +606,7 @@ export class PerspectiveTableColumnNode extends PerspectiveTreeNode {
get fieldName() {
return this.codeName + 'Ref';
// return this.codeName ;
}
get title() {