Choose an appropriate prompt string, perhaps beginning with one of
these words:
- For a dropdown list, use Select, Choose, or Pick.
- For a text entry control, use Type or Enter.
End it with a noun describing what the input is, e.g. "Choose a state,"
"Type your message here," "Enter the patient's name." Put this phrase
into the control, where the value would normally be. (It shouldn't be
a selectable value in a dropdown.)
Since the point of the exercise was to tell the user what they were
required to do before proceeding, don't let the operation proceed
until they've done it! As long as the prompt is still sitting
untouched in the control, disable the button (or whatever) that
lets the user finish this part of the operation. That way, you won't
have to throw an error message at the user.
In The Design of Sites, van Duyne et. al. refer to this
technique in their more general pattern "Preventing Errors."
|