dongyue1988 2018-05-20 16:34
浏览 92
已采纳

Yii2中的GridView过滤器模型

I have a gridview with a dataprovider which has joined two tables as query:

 $applicationDataProvider = new ActiveDataProvider([
                'query' => Application::find()->with('applicantInfo')
                    ->where(['job_posting_id' => $jobPosting->id,
                        'deleted_flag' => 0])->orderBy('created_at desc'),
                'pagination' => [
                    'pageSize' => 5
                ]
            ]);

and here is my GridView:

<?= GridView::widget([
                'dataProvider' => $applicationDataProvider,
                'filterModel'=>$searchModel,
                'columns' => [
                    'id',
                    [
                        'class' => yii\grid\DataColumn::className(),
                        'headerOptions' => ['style' => 'color:#337ab7'],
                        'header' => 'სახელი',
                        'label'=>'name',
                        'value' => function ($data) {
                            return $data->applicantInfo->first_name . ' ' . $data->applicantInfo->last_name;
                        }
                    ],


                    'applicantInfo.email',
                    'applicantInfo.phone',
                    'created_at:date',
                    [
                        'class' => 'yii\grid\ActionColumn',
                        'headerOptions' => ['style' => 'color:#337ab7'],
                        'template' => '{view}',
                        'buttons' => [
                            'view' => function ($url, $model) {
                                return Html::a('<span class="glyphicon glyphicon-eye-open"></span>', $url, [
                                    'title' => Yii::t('app', 'გახსნა'),
                                ]);
                            }


                        ],
                        'urlCreator' => function ($action, $model, $key, $index) {
                            if ($action === 'view') {
                                $url = '/app-info/?id=' . $model->id;
                                return $url;
                            }

                        }

 ...

in a search model I have email field only because I want to gridview has just only email search field.

class ApplicationSearch extends Application
{


    public function rules()
    {
        return [

            [['email'], 'safe'],
            ];
    }

but here is not drawn search field for email, how can I fix it?

  • 写回答

1条回答 默认 最新

  • doucu7330 2018-05-20 19:02
    关注

    You need to add email attribute to ApplicationSearch to store value from filter:

    class ApplicationSearch extends Application {
    
        public $email;
    
        public function rules() {
            return [
                [['email'], 'safe'],
            ];
        }
    }
    

    Use this attribute for filtering:

    $applicationDataProvider = new ActiveDataProvider([
        'query' => Application::find()->with('applicantInfo')
            ->where(['job_posting_id' => $jobPosting->id, 'deleted_flag' => 0])
            ->andFilterWhere(['like', 'applicantInfo.email', $this->email])
            ->orderBy('created_at desc'),
        'pagination' => [
            'pageSize' => 5
        ]
    ]);
    

    And use value from relation in grid:

    // ...
    [
        'attribute' => 'email',
        'value' => function ($data) {
            return $data->applicantInfo->email;
        },
    ],
    'applicantInfo.phone',
    // ...
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改