Going from wireframe to real page

I am working on making my first real advanced form/page and looking for any tips or tricks. Thanks

Am I trying to do too much on 1 page?

To answer the question: No you are not trying too much on one page.

So many things go through my mind when I see a web page formatted as you have shown. I assume that this page will execute CRUD operations. This means having forms for Create, Update and Delete.

The problem is that these forms clutter the page, especially when they are not relevant to the reason for opening the page in the first place. That is why I tend to hide the forms in a modal. That way they will only appear when they are required.

Also keep in mind that the list of exhibitors can be much longer than shown. This will push the forms further down the page.

1 Like

Thank you for the feedback Ben and you are correct this will be my CRUD page with a little extra table at the top. The only exhibits that will be shown are the ones that belong to the current logged in user. With that said I do like the modal idea. Thanks

2 Likes