simov / express-admin

MySQL, MariaDB, PostgreSQL, SQLite admin for Node.js
MIT License
1.17k stars 222 forks source link

Empty one to Many #155

Closed waleedshabbir1 closed 4 years ago

waleedshabbir1 commented 4 years ago

Is there an option to leave select empty or add new values for one to many relationship ?

For example A product which has many new pictures and I can add those pictures while adding the product ?

simov commented 4 years ago

No, that's not supported, but I guess you can use a Many to One instead.

waleedshabbir1 commented 4 years ago

Thank you. That works

but it is showing all the columns of other table. Is it possible to hide the ID columns of that table ?

simov commented 4 years ago

Yes, you have to set their visibility to false in the configuration.

waleedshabbir1 commented 4 years ago

yes got it. Thank you