vote up 15 vote down star
4

Which is the right order for arranging buttons in a dialog box?

flag

77% accept rate
this has been a popular topic recently - stackoverflow.com/questions/268532/… – warren Nov 19 '08 at 17:56

23 Answers

vote up 16 vote down check

Jakob Nielsen (usability guru) has written an article about this very subject.

It's a good article, but it essentially boils down to making sure you're consistent (within your application, and with your users expectations)!

link|flag
vote up 72 vote down

Depends on the platform, most desktop environments have Human Interface Guidelines (HIGs) that will define what the standard is. Always follow the platform standard, conventions and consistency always win.

Some HIGs:

link|flag
4  
It's better to use verbs for button names, see this example msdn.microsoft.com/en-us/library/… – Sam Hasler Sep 8 '08 at 21:10
vote up 45 vote down

You should try, whenever possible, to use verbs instead of OK/Cancel. When closing an unsaved document it should be Save/Don't Save or if an error pops up it should be Continue/Cancel etc.

link|flag
vote up 9 vote down

And for crying out loud, make sure you use OK, and not Ok.

link|flag
Either is better than "Okay" although I did see one app that had "Oll Korrect" that kinda made me laugh quietly to myself. ;-) – travis Sep 9 '08 at 5:33
"Oll Korrect" is part of the historical derivation of OK, actually – Jeff Atwood Sep 9 '08 at 8:22
The "Oll Korrect" story is a myth actually, or so my history-studying brother tells me. Don't shoot me if I turn out to be wrong. – wvdschel Sep 9 '08 at 8:34
'Okay' is actually more proper than 'Ok', since 'O.K.' is the short form of 'okay'. – Kev Nov 19 '08 at 18:05
vote up 5 vote down

The only correct answer, as others have pointed out, is to follow your operating system's conventions and guidelines.

link|flag
vote up 4 vote down

:) OK Cancel
unless you live in a locale or an app that has the opposite as convention.

link|flag
1  
unless you are in a language that reads in the opposite direction. – DevelopingChris Sep 8 '08 at 18:22
vote up 4 vote down

Depends on if you use windows or mac.

IIRC, Windows guidelines suggest OK-Cancel, whereas Apple recommends Cancel-OK

link|flag
platform is not a factor, its the users reading direction. – DevelopingChris Sep 8 '08 at 18:23
Platform is definitely a factor. Always. – Greg Hurlman Sep 8 '08 at 18:27
Platform is definitely a factor. Windows folks are used to clicking the left-hand button without looking, Mac folks are used to clicking the right-hand button. One of the teltale signs of a lazy or naive Mac port is that it still uses the Windows OK-Cancel convention. – Chris Upchurch Sep 8 '08 at 18:45
Before Chrome, I used to have to install Safari to test projects in webkit-based browsers, and it always bugged me how it would bring up the "Would you like to set Safari to be your default browser?" dialog with the OK-Cancel buttons "reversed". Got me every time. – TenebrousX Feb 1 at 6:30
vote up 2 vote down

The order doesn't matter, all it matters is that it's consistent. Follow the platform guidelines if there is one, if not, at least be consistent within your own app.

One thing that is important is to have the default answer appropriate to what you're asking. If you're asking "Are you sure you want to quit?", after the user selected "file/quit", the 'yes' should be the default. If you're asking "Are you sure you want to format the entire drive?", the default should always be 'no'.

link|flag
vote up 2 vote down

Be consistent with your environment.

But if you have a choice, use specific words in the dialog box, not "OK" and "Cancel" or "Yes" and "No", so that the user doesn't have to figure out what you mean by "OK"...and you can put the answers in the order that makes sense for your app and users.

link|flag
vote up 1 vote down

Cross-platforms toolkits like Qt handle that for you. From Qt doc: "The order of the buttons on screen is platform-dependent. For example, on Windows, Save is displayed to the left of Cancel, whereas on Mac OS, the order is reversed."

link|flag
vote up 1 vote down

Use the verb names directly. Rather than Do you want to save changes? - YES/NO? Prefer, What do u want to do? Save/Don't Save.

Check out my post for more details... http://blog.mugunthkumar.com/tech/elements-of-usability-design-okcancel-vs-cancelok-is-it-just-a-matter-of-taste/

link|flag
Agree, but would still make sense to keep 'positive' and 'negative' actions the same way around consistently. – Martin Pritchard Nov 9 at 11:16
vote up 0 vote down

Thanks for your opinion! But why one sequence is better than another?

link|flag
Reading direction – DevelopingChris Sep 8 '08 at 18:24
1  
OK Cancel is better only because everyone else does it that way. If you confuse users by reversing the order, they will hate your application and stop using it. – davogones Feb 1 at 5:12
vote up 0 vote down

I think OK-Cancel. Because you want the affirmative answer first? "Yes-No" not "No-Yes", right?

link|flag
vote up 0 vote down

OK is the default, and most left-to-right languages expect the default first, so OK, Cancel.

For right-to-left languages it's Cancel, OK.

link|flag
And probably not in Latin :-) – ldigas Jun 3 at 3:28
vote up 0 vote down

As others have said, match the environment of your application. There is one gotcha to this though, the web. What's correct there if you have an in page form or AJAX dialog?

I'd in that case say.. match your environment! Detect the user's operating system through the browser and provide CSS with both orders depending on what they are running.

link|flag
vote up 0 vote down

One reason for placing the affirmative choice first is to allow keyboard navigation to work faster for the default case - one less tab keypress on every operation that throws up this dialog could save some annoyance for the users.

Having said that, you're probably best off following everyone else's advice and going with consistency.

link|flag
vote up 0 vote down

You probably shouldn't be using OK/Cancel or Cancel/OK because it's not a very good description of what's going on.

However, assuming that the words themselves are not the essence of your question, but you're actually answering any affirmative/negative style question in a form:

It really depends on the location of your other affirmative answers. Imagine that you're going through a form, and like most forms all of your affirmative responses are on the right (Continue, Edit, Print, Order and so on), and all of your negative responses are on the left (Cancel, Go Back and so on), you can't reverse the process on individual pages.

link|flag
vote up 0 vote down

I am not sure there is a write answer to this but i agree that what really matters is that what ever you pick you must then be consitant across your application.

link|flag
vote up 0 vote down

I'd argue that it's more important to worry about which option will be selected when the user hits enter. I would say that you should have it set to whatever the user is most likely to select (assuming they're doing so purposefully that is).

link|flag
vote up 0 vote down

You should always utilize "The Power of Sameness". Do things exactly like everyone else is doing so that your users don't need to learn a new user interface. Otherwise your users will hate you and use your competitor's product. Break this rule only if you have a really good reason.

link|flag
vote up -1 vote down

To me it does not matter to much about the order. It is all about consistency. If you do it OK-Cancel it should be that way throughout your entire app.

Though it is hard to stay consistent with everything since Microsoft can not stay consistent. They have so many different orders and buttons its a little silly.

link|flag
vote up -1 vote down

Like others have said, it really depends on your platform.

The best way to find out is to look at a few applications that come with your operating system and see how they lay out their buttons.

If you're working in Javascript, you won't have a choice - the browser will pick for you!

link|flag
vote up -1 vote down

I agree with Boris, it is just a convention thing. That is why they are there.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.