在我的要求中,我想列出关系数据的gridview,我有两个表tbl_work(id,workid,cdr_id(tbl_cd的foreign_key))和tbl_cd(id,caller,called)。
工作模型中的和具有相关关系的cd模型。 然后我用tb_work表创建了一个网格,并显示了tbl_cd表记录。
工作模式中的搜索功能
$query = AuditorWorkItems::find();
$query->with("cd");
// add conditions that should always apply here
$dataProvider = new ActiveDataProvider([
'query' => $query,
]);
$this->load($params);
if (!$this->validate()) {
// uncomment the following line if you do not want to return any records when validation fails
// $query->where('0=1');
return $dataProvider;
}
// grid filtering conditions
$query->andFilterWhere([
'id' => $this->id,
'workid' => $this->workid,
'cdr_id' => $this->cdr_id
]);
return $dataProvider;
在我的网格中
<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
[
'attribute' => 'cdr_id',
'value' => function ($model) {
return $model->cdr->called;
},
],
[
'attribute' => 'cdr_id',
'value' => function ($model) {
return $model->cdr->caller;
},
],
它显示被调用者和调用者值,但过滤器不起作用,你有任何其他想法用tbl_cd表中的所有列实现它
答案 0 :(得分:6)
第1步:
在搜索模型中定义变量:
public $calledValue;
第2步:
在规则中应用所需规则。
[['calledValue'], 'safe'],
第3步:
如果要在加载参数之前对搜索模型中的该列进行排序,请编写以下代码:
$dataProvider->sort->attributes['calledValue'] =
[
'asc' => ['tbl_cd.called' => SORT_ASC], // TABLE_NAME.COLUMN_NAME
'desc' => ['tbl_cd.called' => SORT_DESC],
];
第4步:
现在要过滤数据,请在网格过滤条件中添加此代码。
$query->andFilterWhere(['like', 'tbl_cd.called', $this->calledValue]);
第5步:
现在在你的索引文件中写下这段代码:
[
'attribute' => 'calledValue', //To display called value
'label' => 'Your Label',
'value' => 'tbl_cd.called'
],