我在视图中添加了另一个表字段,但搜索按钮消失了,如何检索此表单按钮?
SaleItems =和一个表mysql数据库。
<?php
<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'formatter' => ['class' => 'yii\i18n\Formatter','nullDisplay' => ''],
'columns' => [
['class' => 'yii\grid\SerialColumn'],
**[
'attribute' => 'Data',
'content' => function(SaleItems $model, $key, $index, $column) {
return date('d/m/Y', strtotime($model->sale->date));
},
'header' => 'DATA'
],**
]); ?>
</div>
答案 0 :(得分:0)
搜索字段消失,因为未在searchModel中正确设置..
为此你必须扩展相关的modelSeacrh,添加与相关模型的关系和你需要的字段的过滤器。
为此你必须在基本模式中设置关系
public function getSale()
{
return $this->hasOne(Sale::className(), ['id' => 'sale_id']);
}
/* Getter for sale data */
public function getSaleData() {
return $this->sale->data;
}
然后设置搜索模型声明
/* your calculated attribute */
public $date;
/* setup rules */
public function rules() {
return [
/* your other rules */
[['data'], 'safe']
];
}
并扩展
public function search($params) {
为数据添加适当的排序
$dataProvider->setSort([
'attributes' => [
.....
'data' => [
'asc' => ['tbl_sale.data' => SORT_ASC],
'desc' => ['tbl_sale.data' => SORT_DESC],
'label' => 'Data'
]
]
]);
正确的关系
if (!($this->load($params) && $this->validate())) {
/**
* The following line will allow eager loading with country data
* to enable sorting by country on initial loading of the grid.
*/
$query->joinWith(['sale']);
return $dataProvider;
}
和适当的过滤条件
// filter by sale data
$query->joinWith(['sale' => function ($q) {
$q->where('sale.data = ' . $this->data . ' ');
}]);
一旦你这样做,searchModel包含过滤器的信息,搜索字段显示在gridview
这个答案中的内容只是一个建议清单 您可以在本文档中找到详细的教程(请参阅方案2并根据您的需要进行调整) http://www.yiiframework.com/wiki/621/filter-sort-by-calculated-related-fields-in-gridview-yii-2-0/