public function getPosition()
{
return $this->hasOne(Positions::className(), ['id' => 'position_id']);
}
[
'attribute' => 'position.title',
'label' => 'Должность',
'filter' => GridView::FILTER_SELECT2,
],
...
'filter'=> ArrayHelper::map(Dolznosti::find()->all(),'id','name')
...
return ArrayHelper::map(Positions::find()->all(), 'id', 'title');
public static function getIdTitleList(){
return ArrayHelper::map(self::find()->all(), 'id', 'title');
}
...
'filter'=> Positions::getIdTitleList()
...
...
return $this->render('some_view',[
'dataProvider' => $dataProvider,
'position_array' => Positions::getIdTitleList()
])
...
...
'filter'=> $position_array
...
еррор что View::find not found
<?php
namespace common\models;
use Yii;
use yii\helpers\ArrayHelper;
/**
* This is the model class for table "positions".
*
* @property integer $id
* @property string $title
*/
class Positions extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return 'positions';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['title'], 'string', 'max' => 16],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'title' => 'Должность',
];
}
/**
* Список всех должностей массивом
* @return array
*/
public function getAllAsArray() {
return ArrayHelper::map(self::find()->all(), 'id', 'title');
}
}
[
'attribute' => 'position_id',
'value' => 'position.title',
'label' => 'Должность',
//'filterType' => GridView::FILTER_SELECT2,
'filter' => Positions::getAllAsArray(),
],
public function getAllAsArray()
'filter' => ['' => '', 1 => 'Не привязан', 2 => 'Менеджер'], // лучше Position::find()->select('title)->indexBy('id')->asArray()->column()
'filterType' => GridView::FILTER_SELECT2,
[
'attribute' => 'position_id',
'value' => 'position.title',
'label' => 'Должность',
'filterType' => GridView::FILTER_SELECT2,
'filter' => Positions::find()->select('title')->indexBy('id')->asArray(),
],