feat: enable searchable dropdowns (Tom Select) for all tablar views

This commit is contained in:
2026-05-01 12:51:06 -04:00
parent 3d95c63e63
commit b564a63c67
35 changed files with 63 additions and 0 deletions
@@ -0,0 +1,14 @@
<script src="https://cdn.jsdelivr.net/npm/tom-select@2.4.3/dist/js/tom-select.complete.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
document.querySelectorAll('select').forEach((el) => {
new TomSelect(el, {
create: false,
sortField: {
field: "text",
direction: "asc"
}
});
});
});
</script>