Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ok and Cancel button on right OR left side of the Dialog window?

what is better concerning user intuitive usage?

OK...Cancel or Cancel...OK in a Dialog Window?

edit:

arghhhh I stepped in a trap :P

seems some user misunderstood me...

I do not mean having OK and Cancel on the left/right side of the dialog.

what I mean is should the OK button be right-handed to the Cancel button or other way round?

Thats what I meant actually :)

like image 609
msfanboy Avatar asked Aug 12 '10 15:08

msfanboy


People also ask

Should Cancel button be on right or left?

So 'Cancel' is always on the right of OK button for Windows platform. Apple MacOS Guidelines says that “A button that initiates an action is furthest to the right.

Should OK be on the left or right?

In most languages, people are accustomed to read from left side to right side, so it accords with our speech habits to put ok-key on the left side of cancel-key.

Why is the OK button on the right?

This button placement works because it maps to the user's left-to-right reading and navigating direction, where right is the direction to progress and left is the direction to regress.

What is the use of Cancel button?

Cancel is a button or option that lets you exit a program or dialog box and not save any of the changes made.


1 Answers

Neither. "OK" and "Cancel" are particularly poor choices for dialog buttons. Dialog buttons should really be labelled with the actions that each button will perform - e.g.

Do you want to save this unsaved file before exiting the application?

                 [Save]  [Don't Save]  [Don't Exit]

And, in either case, I would suggest ordering from left-to-right in order of 'most likely', so in my example, I'm assuming Saving is the most likely choice, followed by exiting without saving, followed by not exiting. This is most intuitive for a left-to-right language, since the user will most likely get to their preferred choice soonest, but other language directions will differ.

like image 160
Bobby Jack Avatar answered Sep 21 '22 06:09

Bobby Jack