Forms in modals: UX case
user-interface.io
Forms in modals: UX case
1–10 of 51 posts
Re: Forms in modals: UX case
#2Re: Forms in modals: UX case
#3Re: Forms in modals: UX case
#4Re: Forms in modals: UX case
#5I will read the article, but I must say first. As a UI developer, modals have many good purposes, and make it a lot simpler to develop flows where you just need to briefly redirect focus or make a confirmation. Generating new layouts where you can correctly and efficiently draw user attention & find screen space is not always easy, so I will be interested what recommendations are given in such situations.
Re: Forms in modals: UX case
#6Re: Forms in modals: UX case
#7Re: Forms in modals: UX case
#8> What's the difference between a dedicated page that has a link "return back to the table", and a modal that you cannot close by clicking on the overlay. And the only way to close it is by clicking the close button/icon which in fact returns you back to the table as well?
I think they tend to happen because (for whatever reason) people make SPAs, which is precisely about having everything on a single page; then opening a new one is slow (thanks to multi-megabyte JS) and contrary to the whole approach. And when you propose to avoid SPAs, it's met with "but Google does that", "that's modern", and so on.
Edit: Actually I've misinterpreted the article (and "dedicated page") and mixed up modals with SPAs, as pointed in one of the replies.
Re: Forms in modals: UX case
#9I guess the person who posted it checked out the URL that I have, and previously I indeed called it something like stop using modals.
The thing is that they are really OVERused. And right now I'm working on a project where we have modals inside modals and sometime even popup as a third layer. I cannot influence these decisions, but it's TOO much.
Re: Forms in modals: UX case
#10I'm annoyed by modals on web pages (along with any excessive JS) as much as the next person, but: > What's the difference between a dedicated page that has a link "return back to the table", and a modal that you cannot close by clicking on the overlay. And the only way to close it is by clicking the close button/icon which in fact returns you back to the table as well? I think they tend to happen because (for whateve…