perspective rows WIP

This commit is contained in:
Jan Prochazka
2022-06-30 18:10:50 +02:00
parent 301222d118
commit 8228afd725
2 changed files with 134 additions and 17 deletions

View File

@@ -33,7 +33,7 @@
for (const child of node.childNodes) {
if (child.isExpandable && child.isChecked) {
loadLevelData(child, rows);
await loadLevelData(child, rows);
// loadProps.push(child.getNodeLoadProps());
}
}
@@ -86,7 +86,7 @@
<th rowspan={column.rowSpan}>{column.title}</th>
{/if}
{#if column.showParent(columnLevel)}
<th colspan={column.getColSpan(columnLevel)}>{column.parentColumns[columnLevel]}</th>
<th colspan={column.getColSpan(columnLevel)}>{column.getParentName(columnLevel)}</th>
{/if}
{/each}
</tr>