-
-
Notifications
You must be signed in to change notification settings - Fork 125
Attribute form size nestedforms #519
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Attribute form size nestedforms #519
Conversation
|
Thanks, could you post a before/after screenshot for better understanding? |
|
What if the form is higher than the available vertical space? |
# Conflicts: # components/AttributeForm.jsx
|
Any new here? Is there a chance to use this in the source or have you any suggestions how to scale the nested form? |
|
I was meaning to try whether I managed to get nested form naturally expand the size of the parent container, but haven't yet found time to do so. Roughly, the idea should be to not set |
|
ok I couldn't manage it to naturally expand the nested form without absolute position. But i have a version, where I remove the parent form while child edit is active. This way the form height is flexible and will scroll, when the window is to small or user shrinks it manually. What do you think? |




when using nested forms for relational values, the form renders on top of the edit window and gets the height of the edit window. Since there is not much content in the base edit window, the window height is small and the form doesn't scale to the form height. With this changes, the overlaying form pushes the window height to the attribute form style height, when the form is shown and removed when form editing is finished.