When defining table header
columnName: "fieldName", columnLabel: "Invoice",
current KTDataTable doesn`t look at columnName thats why we cant use label for header customization.
the reason is in TableBodyRow.vue it need to be changed to ${properties.columnName}
{{ row[prop] }}
additional question for this datatable - how to disable pagination ?
Hi,
We already know about this issue, and the fix will be available in the next release.
To disable pagination you can set itemsPerPage to the length of your data.
:itemsPerPage="tableData.length"