Is it possible to render a table component inside a form component?
I want to render a table of model records that use the selected rows to save a relationship.
A relation manager doesn't work because i want to show a table of all possible records that i can attach to, not a searchable select with a table that shows existing relationships.
Any ideas?
Any ideas?
2 Replies
This isn’t possible at the moment because tables have forms and forms can’t be nested per the html spec.
You could potentially use a repeater or #awcodes-table-repeater but it won’t be a full table instance with filters, search etc.
Thanks Adam, Ill try and go down the customised query relation manager route.