Commit d82932c4 by Nikola Basic Committed by Alexander Makarov

Fixed broken links [ci skip]

parent 61376c72
...@@ -40,7 +40,7 @@ GridView ...@@ -40,7 +40,7 @@ GridView
-------- --------
Data grid or GridView is one of the most powerful Yii widgets. It is extremely useful if you need to quickly build admin Data grid or GridView is one of the most powerful Yii widgets. It is extremely useful if you need to quickly build admin
section of the system. It takes data from [data provider](data-providers.md) and renders each row using a set of columns section of the system. It takes data from [data provider](output-data-providers.md) and renders each row using a set of columns
presenting data in a form of a table. presenting data in a form of a table.
Each row of the table represents the data of a single data item, and a column usually represents an attribute of Each row of the table represents the data of a single data item, and a column usually represents an attribute of
...@@ -251,9 +251,9 @@ echo GridView::widget([ ...@@ -251,9 +251,9 @@ echo GridView::widget([
### Filtering data ### Filtering data
For filtering data the GridView needs a [model](model.md) that takes the input from the filtering For filtering data the GridView needs a [model](structure-models.md) that takes the input from the filtering
form and adjusts the query of the dataProvider to respect the search criteria. form and adjusts the query of the dataProvider to respect the search criteria.
A common practice when using [active records](active-record.md) is to create a search Model class A common practice when using [active records](db-active-record.md) is to create a search Model class
that provides needed functionality (it can be generated for you by Gii). This class defines the validation that provides needed functionality (it can be generated for you by Gii). This class defines the validation
rules for the search and provides a `search()` method that will return the data provider. rules for the search and provides a `search()` method that will return the data provider.
...@@ -420,7 +420,7 @@ $query->andFilterWhere(['LIKE', 'author.name', $this->getAttribute('author.name' ...@@ -420,7 +420,7 @@ $query->andFilterWhere(['LIKE', 'author.name', $this->getAttribute('author.name'
> ``` > ```
> Info: For more information on `joinWith` and the queries performed in the background, check the > Info: For more information on `joinWith` and the queries performed in the background, check the
> [active record docs on eager and lazy loading](active-record.md#lazy-and-eager-loading). > [active record docs on eager and lazy loading](db-active-record.md#lazy-and-eager-loading).
#### Using sql views for filtering, sorting and displaying data #### Using sql views for filtering, sorting and displaying data
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment