diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2016-07-13 11:47:38 +0300 |
---|---|---|
committer | Johannes Dahlström <johannesd@vaadin.com> | 2016-07-13 11:49:28 +0300 |
commit | eec0a02df3faf7f01efdf901d74ae651733c7775 (patch) | |
tree | 9bb87ed90b440dd594bf3993126a1e53afb944eb | |
parent | bf86584c911e845113a77a98def33390c3fb507c (diff) | |
download | vaadin-framework-eec0a02df3faf7f01efdf901d74ae651733c7775.tar.gz vaadin-framework-eec0a02df3faf7f01efdf901d74ae651733c7775.zip |
Vaadin 8 terminology changes: Architecture Overview
Change-Id: I78a2a3a0a75527cf12c2c6d626272dc35bb18ba6
-rw-r--r-- | documentation/architecture/architecture-overview.asciidoc | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/documentation/architecture/architecture-overview.asciidoc b/documentation/architecture/architecture-overview.asciidoc index 9307b7b72c..c17af7880d 100644 --- a/documentation/architecture/architecture-overview.asciidoc +++ b/documentation/architecture/architecture-overview.asciidoc @@ -127,15 +127,12 @@ Data Binding:: ((("Data Model"))) ((("Data Binding"))) -In addition to the user interface model, Vaadin provides a __data model__ for -binding data presented in field components, such as text fields, check boxes and -selection components, to a data source. Using the data model, the user interface +In addition to the user interface model, Vaadin provides a __data binding__ API for +associating data presented in field components, such as text fields, check boxes and +selection components, with a data source. Using data binding, the user interface components can update the application data directly, often without the need for -any control code. All the field components in Vaadin use this data model -internally, but any of them can be bound to a separate data source as well. -((("SQL"))) -For example, you can bind a table component to an SQL query response. For a -complete overview of the Vaadin Data Model, please refer to +any control code. For example, you can bind a data grid component to a backend query +response. For a complete overview of the data binding model, please refer to <<dummy/../../../framework/datamodel/datamodel-overview.asciidoc#datamodel.overview,"Binding Components to Data">>. |