I’ve got an edit screen that is pretty specific in its design/layout needs. I’ve some input fields at the top of the screen, followed by a tabsheet below it. I’ve been charged with pinning everything in place - including the tabsheet menu and editactions buttons at the bottom of the screen, and only allowing scrolling for the contents within the tabs themselves.
Any attempt I’ve made of this still scrolls the whole screen and usually messes up my current layout. I would really appreciate some help in figuring this out.
test.zip (88.1 KB) Here is a test project with the same layout in the my-data-edit.xml file.
Try to remove scrollBox from the root layout because it scrolls all its content with your form. Then move your tabSheet on the same layer with form and expand it:
Thank you so much for the help. It works perfectly! I’m a little confused by the form container not being needed around all of the form fields, though.