Commit 08791481 by Alexander Makarov

Merge pull request #3775 from Ragazzo/widgets_guide_adjusted

fixed note about search class
parents 3f5e6e9b 8e1ba127
......@@ -231,8 +231,8 @@ echo GridView::widget([
For filtering data the GridView needs a [model](model.md) that takes the input from the filtering
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
that extends from the active record class. This class then defines the validation rules for the search
and provides a `search()` method that will return the data provider.
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.
To add search capability for the `Post` model we can create `PostSearch` like in the following example:
......@@ -245,7 +245,7 @@ use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
class PostSearch extends Post
class PostSearch extends Model
{
public function rules()
{
......@@ -290,7 +290,7 @@ You can use this function in the controller to get the dataProvider for the Grid
```php
$searchModel = new PostSearch();
$dataProvider = $searchModel->search($_GET);
$dataProvider = $searchModel->search(Yii::$app->request->get());
return $this->render('myview', [
'dataProvider' => $dataProvider,
......
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