summaryrefslogtreecommitdiffstats
path: root/documentation/datamodel/datamodel-forms.asciidoc
diff options
context:
space:
mode:
authoralexandruchiuariu <43343269+alexandruchiuariu@users.noreply.github.com>2019-03-22 15:09:13 +0200
committerSun Zhe <31067185+ZheSun88@users.noreply.github.com>2019-03-22 15:09:13 +0200
commit9ebb228206e1baa414b0f2630f79d71f7bca7950 (patch)
tree3420788973395c3271ca02043bc73e23649ae221 /documentation/datamodel/datamodel-forms.asciidoc
parent7f1ab3bc5e0ad10ccc4fbd5aacddeb2b7f058345 (diff)
downloadvaadin-framework-9ebb228206e1baa414b0f2630f79d71f7bca7950.tar.gz
vaadin-framework-9ebb228206e1baa414b0f2630f79d71f7bca7950.zip
Update datamodel-forms.asciidoc (#11496)
Diffstat (limited to 'documentation/datamodel/datamodel-forms.asciidoc')
-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]