summaryrefslogtreecommitdiffstats
path: root/documentation/datamodel/datamodel-overview.asciidoc
diff options
context:
space:
mode:
authorArtur <artur@vaadin.com>2017-03-03 10:17:11 +0200
committerPekka Hyvönen <pekka@vaadin.com>2017-03-03 10:17:11 +0200
commitd548ebb548d860dfb95ff9dbc69e4a45c25973df (patch)
tree2f4a82fb6defaf7dcb735a38ce3412432a49ec4a /documentation/datamodel/datamodel-overview.asciidoc
parent45921980b2ce44b6e9642aca6da33cea6da24cc0 (diff)
downloadvaadin-framework-d548ebb548d860dfb95ff9dbc69e4a45c25973df.tar.gz
vaadin-framework-d548ebb548d860dfb95ff9dbc69e4a45c25973df.zip
Fix documentation links (#8726)
* Fix documentation links
Diffstat (limited to 'documentation/datamodel/datamodel-overview.asciidoc')
-rw-r--r--documentation/datamodel/datamodel-overview.asciidoc12
1 files changed, 6 insertions, 6 deletions
diff --git a/documentation/datamodel/datamodel-overview.asciidoc b/documentation/datamodel/datamodel-overview.asciidoc
index 42dd0a73d6..ea11d63f2f 100644
--- a/documentation/datamodel/datamodel-overview.asciidoc
+++ b/documentation/datamodel/datamodel-overview.asciidoc
@@ -11,7 +11,7 @@ The Vaadin Data Model is one of the core concepts of the library.
There is a standard data interface that all UI components use to access and modify the application's data.
The most basic UI component for handling data is a field component that lets the user define a single value, for instance a text field for writing the name of a product or a dropdown menu for selecting which department an employee belongs to.
-See <<dummy/../../../framework/datamodel/datamodel-fields.asciidoc,"Editing Values in Fields">> to learn how these components can be used on their own.
+See <<dummy/../../../framework/datamodel/datamodel-fields.asciidoc#datamodel.fields,"Editing Values in Fields">> to learn how these components can be used on their own.
In most applications, there are business classes that represent real-world objects like a single employee or a product in an inventory.
The user interface is structured as a form that lets the user edit all the different properties of a single business object instance.
@@ -22,11 +22,11 @@ You have full control over how you configure and lay out the individual input fi
There are UI components in the framework that lists multiple similar objects and lets the user view, select and in some cases even edit those objects.
A listing component can get its data from an in-memory collection or lazily fetch it from some backend.
In either case, there are options available for defining how the data is sorted and filtered before being displayed to the user.
-Read more about how to provide lists of data to these components in <<dummy/../../../framework/datamodel/datamodel-providers.asciidoc,"Showing Many Items in a Listing">>.
-Using a listing component as an input field to select one or many of the listed items is described in <<dummy/../../../framework/datamodel/datamodel-selection.asciidoc,"Selecting items">>.
+Read more about how to provide lists of data to these components in <<dummy/../../../framework/datamodel/datamodel-providers.asciidoc#datamodel.providers,"Showing Many Items in a Listing">>.
+Using a listing component as an input field to select one or many of the listed items is described in <<dummy/../../../framework/datamodel/datamodel-selection.asciidoc#datamodel.selection,"Selecting items">>.
Vaadin Data Model topic references::
-* <<dummy/../../../framework/datamodel/datamodel-fields.asciidoc,"Editing Values in Fields">>
+* <<dummy/../../../framework/datamodel/datamodel-fields.asciidoc#datamodel.fields,"Editing Values in Fields">>
* <<dummy/../../../framework/datamodel/datamodel-forms.asciidoc#datamodel.forms,"Binding Data to Forms">>
-* <<dummy/../../../framework/datamodel/datamodel-providers.asciidoc,"Showing Many Items in a Listing">>
-* <<dummy/../../../framework/datamodel/datamodel-selection.asciidoc,"Selecting items">>
+* <<dummy/../../../framework/datamodel/datamodel-providers.asciidoc#datamodel.providers,"Showing Many Items in a Listing">>
+* <<dummy/../../../framework/datamodel/datamodel-selection.asciidoc#datamodel.selection,"Selecting items">>