summaryrefslogtreecommitdiffstats
path: root/documentation/datamodel
diff options
context:
space:
mode:
authorJuha Seppänen <juha@vaadin.com>2017-01-12 15:43:30 +0200
committerAleksi Hietanen <aleksi@vaadin.com>2017-01-12 15:43:30 +0200
commitd3f4cb7a56aa98ed9be3038a36bf5d9ca7ac89f4 (patch)
treec7c51b520cc73f5de9daa56a39459014da360f30 /documentation/datamodel
parentcd73480c602326c4bbb2872e0839d14626199551 (diff)
downloadvaadin-framework-d3f4cb7a56aa98ed9be3038a36bf5d9ca7ac89f4.tar.gz
vaadin-framework-d3f4cb7a56aa98ed9be3038a36bf5d9ca7ac89f4.zip
Use correct format for links in datamodel-overview (#8233)
Diffstat (limited to 'documentation/datamodel')
-rw-r--r--documentation/datamodel/datamodel-overview.asciidoc16
1 files changed, 8 insertions, 8 deletions
diff --git a/documentation/datamodel/datamodel-overview.asciidoc b/documentation/datamodel/datamodel-overview.asciidoc
index 7e9afeb3b6..42dd0a73d6 100644
--- a/documentation/datamodel/datamodel-overview.asciidoc
+++ b/documentation/datamodel/datamodel-overview.asciidoc
@@ -11,22 +11,22 @@ 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 link: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,"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.
Vaadin Framework makes it easy to create forms for editing these sorts.
You have full control over how you configure and lay out the individual input fields making up a form, and then you can use `Binder` to hook up those fields to a business object instance.
-link:datamodel-forms.asciidoc[Binding Data to Forms] shows how to bind data to fields.
+<<dummy/../../../framework/datamodel/datamodel-forms.asciidoc#datamodel.forms,"Binding Data to Forms">> shows how to bind data to fields.
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 link: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 link:datamodel-selection.asciidoc[Selecting items].
+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">>.
Vaadin Data Model topic references::
-* link:datamodel-fields.asciidoc[Editing Values in Fields]
-* link:datamodel-forms.asciidoc[Binding Data to Forms]
-* link:datamodel-providers.asciidoc[Showing Many Items in a Listing]
-* link:datamodel-selection.asciidoc[Selecting items]
+* <<dummy/../../../framework/datamodel/datamodel-fields.asciidoc,"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">>