Recommendations for UI design

Designing GUI Confirmation dialogs

  1. Avoid asking questions
  2. Be as concise as possible
  3. Identify the item at risk
  4. Name your buttons for the actions

More information: http://ux.stackexchange.com/a/768

Form validation

  • Only validate input after leaving the field (or after the user stopped typing for some time)
  • The user shouldn't be able to submit the form if there are errors
  • However, disabling the submit button in case there are errors is also not optimal. Instead, clicking the submit button should highlight the errors.
  • Empty required files shouldn't be marked as invalid until the user a) tries to submit the form or b) focused the field, deleted it contents and then left the field (see Example
  • Ideally, the error message should be shown below the text field and not as a tooltip (so that users quickly understand what's the problem). For example as here in Boostrap