Low code platform for building business apps and workflows in minutes. Supports PostgreSQL, MySQL, MariaDB, MSSQL, MongoDB, Rest API, Docker, K8s, and more 🚀
Right now the form component defaults to showing every single available field in the table bound to it.
We need to be able to configure which fields are hidden/shown on a particular table from the settings panel when that table is bound to the form. It seems like the best option for this is a <select multiple /> which will let you select a list of fields from a particular table.
Create multiple select component in the builder for choosing several model fields (bear in mind some fields can be "required", so we should only allow them to deselect fields that are not required.)
Update DataForm.svelte to account for the selected fields and only render those in the form
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Right now the form component defaults to showing every single available field in the table bound to it.
We need to be able to configure which fields are hidden/shown on a particular table from the settings panel when that table is bound to the form. It seems like the best option for this is a
<select multiple />
which will let you select a list of fields from a particular table.