baseddata.io/layouts/shortcodes/table.html

9 lines
346 B
HTML
Raw Normal View History

2024-09-22 14:27:13 +01:00
{{ partial "table.html" }}
2024-09-23 17:46:59 +01:00
<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>