You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VisuallyDistinguishPrimaryActions.asciidoc 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. ---
  2. title: Visually Distinguish Primary Actions
  3. order: 66
  4. layout: page
  5. ---
  6. [[visually-distinguish-primary-actions]]
  7. Visually distinguish primary actions
  8. ------------------------------------
  9. Most forms and dialogs have at least two actions that can be performed,
  10. such as _Submit/Cancel_, _Save/Revert_ or _Yes/No_. Quite often, there
  11. are more, such as a login form with the actions _“Sign in”_,
  12. _“Register”_, and _“Forgot password”_. Usually, one of these actions is
  13. by far the most commonly used, and as such, the most likely one the user
  14. is going to be looking for.
  15. If all actions are represented by identical buttons (save for the
  16. caption), identifying the primary button can be quite slow, and the risk
  17. of selecting the wrong action by mistake (especially when in a hurry) is
  18. substantial:
  19. image:img/sign%20in%20-%20no%20distinction.png[Sign in - no distinction]
  20. By visually distinguishing primary actions, e.g. by color, size or
  21. shape, the user can quickly and accurately find them even in a crowded,
  22. cluttered UI. A typical approach is to use a stronger (more saturated)
  23. color with greater contrast for the primary actions, and a grayer, lower
  24. contrast color for the secondary actions:
  25. image:img/sign%20in%20-%20primary%20distinguished.png[Sign in - distinguished]
  26. Sometimes a view can have more than one primary action simultaneously
  27. available, although usually in different parts of the view. Google
  28. handles this quite elegantly by systematically styling _creation_
  29. primary buttons (such as _Compose_ in Gmail and _Create_ in Drive) in
  30. *red*, and other primary buttons (such as search) in *blue*, while
  31. leaving secondary buttons *gray*:
  32. image:img/google%20drive.png[Google drive]
  33. Choose colors wisely, though – red, for instance, means _“no”_, _"stop"_
  34. or _“danger”_ in most cultures, so using that for _“Yes”_ or _“Submit”_
  35. might send the user mixed signals. You might also want to take into
  36. account the effects of color blindness (affecting approximately 10% of
  37. men and 1% of women), especially if your user base is going to be tens
  38. of thousands of people.
  39. Setting a different visual style for primary action buttons is very easy
  40. to do in Vaadin by using the *BUTTON_DEFAULT* stylename in any of the
  41. built-in themes like Reindeer or Chameleon:
  42. [source,java]
  43. ....
  44. Button btnSignIn = new Button("Sign in");
  45. btnSignIn.addStyleName(Reindeer.BUTTON_DEFAULT);
  46. ....
  47. Another common approach, mainly used on the web, is to use text links
  48. instead of buttons for secondary or tertiary actions. This has a
  49. significantly stronger effect than color or size, and should only be
  50. used for significantly less common actions, such as a password reset
  51. request, not for the _“No”_ option in a _Yes/No_ dialog, for instance:
  52. image:img/sign%20in%20-%20all%20different.png[Sign in - all different]
  53. This is just as easy in Vaadin. Just use the *BUTTON_LINK* stylename
  54. defined in the base theme (and inherited in all built in themes), and
  55. your Button will look like a normal text-hyperlink.
  56. [source,java]
  57. ....
  58. Button btnForgotPwd = new Button("Forgot password?");
  59. btnForgotPwd.addStyleName(Reindeer.BUTTON_LINK);
  60. ....
  61. (Note that the separate *Link* component should not be used for server
  62. actions, since you can't bind a ClickListener to a Link.)
  63. [[consider-binding-the-enter-key-to-the-primary-action]]
  64. Consider binding the Enter key to the primary action
  65. ++++++++++++++++++++++++++++++++++++++++++++++++++++
  66. Especially in short, often used forms, such as a login form, it is
  67. usually a good idea to bind the Enter key to the primary action. This
  68. relieves the user from having to move his hand from the keyboard to the
  69. mouse.
  70. [source,java]
  71. ....
  72. Button btnSignIn = new Button("Sign in");
  73. btnSignIn.addStyleName(Reindeer.BUTTON_DEFAULT);
  74. btnSignIn.setClickShortcut(KeyCode.ENTER);
  75. ....
  76. If the primary action is something that really mustn’t be invoked by
  77. mistake or without properly thinking about it first, however, it’s
  78. probably better not to bind it to a keyboard shortcut, to avoid
  79. accidental invocations. Another reason to abstain from a keyboard
  80. shortcut is if the form contains an input field in which Enter can be
  81. used for something, such as a multi-line text area (where Enter creates
  82. a line break).