summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralexandruchiuariu <43343269+alexandruchiuariu@users.noreply.github.com>2019-03-22 15:09:13 +0200
committerPekka Hyvönen <pekka@vaadin.com>2019-04-02 20:08:40 +0300
commit0801b53e2d89006dc289b0571ccaa9f427910ae7 (patch)
tree5847b439e4088b4f402961ff95af6692fe24e2f6
parentcbede54ce7b4c23bd8be1d24db34fd420981b9a9 (diff)
downloadvaadin-framework-0801b53e2d89006dc289b0571ccaa9f427910ae7.tar.gz
vaadin-framework-0801b53e2d89006dc289b0571ccaa9f427910ae7.zip
Update datamodel-forms.asciidoc (#11496)
-rw-r--r--documentation/datamodel/datamodel-forms.asciidoc2
1 files changed, 2 insertions, 0 deletions
diff --git a/documentation/datamodel/datamodel-forms.asciidoc b/documentation/datamodel/datamodel-forms.asciidoc
index 5be66f81ea..fc4572f97c 100644
--- a/documentation/datamodel/datamodel-forms.asciidoc
+++ b/documentation/datamodel/datamodel-forms.asciidoc
@@ -14,6 +14,8 @@ Vaadin Framework provides a [classname]#Binder# class that the developer can use
[classname]#Binder# takes care of reading values from the business object and converting the user's data between the format expected by the business object and the format expected by the field.
The input entered by the user can also be validated, and the current validation status can be presented to the user in different ways.
+TIP: Watch the https://vaadin.com/training/course/view/data-binding-and-validation[Vaadin 8: Data binding and validation] free training video to learn more about creating simple and complex forms, value conversion and validation, and how the Vaadin data model works.
+
The first step to binding fields for a form is to create a [classname]#Binder# and bind some input fields. There is only one [classname]#Binder# instance for each form and it is used for all fields in that form.
[source, java]