2024-09-22 14:27:13 +01:00
|
|
|
{{ partial "table.html" }}
|
|
|
|
<div id = '{{ .Get "id" }}-table-container'>
|
2024-09-10 09:15:00 +01:00
|
|
|
<script>
|
2024-09-22 14:27:13 +01:00
|
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
|
|
createTable({{ .Get "endpoint" }}, {{ .Get "id" }}, {{ .Get "headers" | safeJS }}, {{ .Get "maxHeight" }}, {{ .Get "sortable" }}, {{ .Get "valueId" }}, {{ .Get "selectableRows" }})
|
|
|
|
});
|
2024-09-10 09:15:00 +01:00
|
|
|
</script>
|
2024-09-22 14:27:13 +01:00
|
|
|
</div>
|