From cc05b5f0681ef6444d5e24def148936b4f2ac080 Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Fri, 11 Apr 2014 10:14:17 +0200 Subject: [PATCH] Update data-overview.md --- docs/guide/data-overview.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guide/data-overview.md b/docs/guide/data-overview.md index 401422a682..03a91fb16c 100644 --- a/docs/guide/data-overview.md +++ b/docs/guide/data-overview.md @@ -6,9 +6,9 @@ for the Web site's frontend. But when it comes to backend data components and wi Typically, you would take the following steps when working with one of these data components: -1. Configure the data provider. It may get its data from an array, an SQL command, an ActiveRecord query, etc. -2. Pass the data provider to a widget, such as a list view or grid view. +1. Configure the [data provider](data-providers.md). It may get its data from an array, an SQL command, an ActiveRecord query, etc. +2. Pass the data provider to a widget, such as a [list view](data-widgets.md#list-view) or [grid view](data-grid.md). 3. Customize the widget to reflect the presentational style that you are after. -That's it. After doing these simple steps you will have powerful interfaces, such as a full featured data grid that supports pagination, sorting, and -filtering, ideal for admin part of your project. \ No newline at end of file +That's it. After doing these simple steps you will have a powerful interfaces, such as a full featured data grid that supports pagination, sorting, and +filtering, ideal for the admin part of your project.