Преглед на файлове

Migrate MarkRequiredFieldsAsSuch

tags/8.2.0.alpha2
Erik Lumme преди 6 години
родител
ревизия
c413e16ff3
променени са 4 файла, в които са добавени 41 реда и са изтрити 0 реда
  1. 40
    0
      documentation/articles/MarkRequiredFieldsAsSuch.asciidoc
  2. 1
    0
      documentation/articles/contents.asciidoc
  3. Двоични данни
      documentation/articles/img/errortooltip.png
  4. Двоични данни
      documentation/articles/img/reqfield.png

+ 40
- 0
documentation/articles/MarkRequiredFieldsAsSuch.asciidoc Целия файл

@@ -0,0 +1,40 @@
[[mark-required-fields-as-such]]
Mark required fields as such
----------------------------

Don’t make your users guess which fields in your form are required. Mark
them as such:

[source,java]
....
TextField tfFirstName = new TextField("First name");
tfFirstName.setRequired(true);
tfFirstName.setRequiredError("First name must be filled in!");
....

Required fields get a small *asterisk* after the caption (or after the
field itself, if it doesn’t have a caption), which is quite universally
understood to mean “required”. Of course, it certainly doesn’t hurt to
have “footnote” somewhere in your form that explains it anyway.

image:img/reqfield.png[Required field with asterisk]

Marking a field as required also implicitly adds a non-empty validator
to the field, preventing the form from being submitted unless a value
has been entered. The error message associated with that validator can
be set with the *setRequiredError()* method:

[source,java]
....
TextField tfFirstName = new TextField("First name");
tfFirstName.setRequired(true);
tfFirstName.setRequiredError("First name must be filled in!");
....

image:img/errortooltip.png[Required field with error]

Think carefully about which fields really are required, though. For
instance, asking unnecessary questions in a sign-up form has a tendency
to make people either cancel signing up, or enter nonsense information
in fields they deem nonessential. Only mark as required fields that you
really need the user to fill in, right there and then.

+ 1
- 0
documentation/articles/contents.asciidoc Целия файл

@@ -67,5 +67,6 @@ are great, too.
- link:UseTooltipsToClarifyFunctions.asciidoc[Use tooltips to clarify functions]
- link:EnableAndDisableButtonsToIndicateState.asciidoc[Enable and disable buttons to indicate state]
- link:ChangingThemeOnTheFly.asciidoc[Changing theme on the fly]
- link:MarkRequiredFieldsAsSuch.asciidoc[Mark required fields as such]
- link:CreatingAUIExtension.asciidoc[Creating a UI extension]
- link:CreatingAThemeUsingSass.asciidoc[Creating a theme using Sass]

Двоични данни
documentation/articles/img/errortooltip.png Целия файл


Двоични данни
documentation/articles/img/reqfield.png Целия файл


Loading…
Отказ
Запис