Good Defaults Design pattern

Problem summary

The user needs to enter data into the system, whereof some options are most likely to match the default values.

Example

GoodDefaults

Usage

  • Use when the user has to choose among many options, whereof some are most likely to match the default values chosen by other users.
  • Use when it is possibly for the system to make qualified guesses regarding what the user might choose.
  • Use when it seems as a complicated thing to fill out the form without the default: when the number of required choices hinders the user from finishing filling out a form.
  • Do not use for input fields that are important for the user to think about. For instance for signing up to a newsletter or accepting the terms and agreements of a website.

Solution

Drop down boxes and text fields are prefilled or preselected with reasonable default values. The default values are qualified guesses as to what the user would possibly select.

The example shown above is from the airline company called SAS. Initially, a country is selected, where after the from fields are filled with appropiate airports. Also notice how it is assumed that the user wishes to make a round trip, fly sometime in the current month, and fly alone without any children. These default choices possibly answers to the large majority of the airline’s customers.

Rationale

By providing default values in often complex forms with many choices, you save the user from the hassle of selecting all the relevant choices. Filling out a long form can sometimes be enough reason for the user to go somewhere else, where the process is easier.

The default values might not be right, but at least you provided the user with an example that he can change with as much effort as he would have put in if there was no example.

More example images of the 'Good Defaults' pattern

  • www.homesite.com

    Notice how values are prefilled in the homesite.com insurance quote wizard.

  • etsy.com

    Etsy.com tries to guess your settings - if the guess was correct, it's easy for etsy.com to continue the personalization process.

2 Comments

Post a comment

Required. Real name or initials only.
Required. Will not be published.
Vote down Vote up
Out of 19 votes, 89.47% like this one.

Example images

  • www.homesite.com
  • etsy.com

Related links

See it in action