我尝试使用可编辑列设置 Kartik Gridview。一列是类型INPUT_SELECT2
。
在视图中,我有以下定义:
$gridColumns = [
[
'class'=>'kartik\grid\EditableColumn',
'attribute'=>'occupation_ids',
'value' => 'occuList',
'editableOptions'=>[
'header'=>'Occupations',
'inputType'=>Editable::INPUT_SELECT2,
'options' => [
'attribute'=>'occupations',
'data' => ArrayHelper::map(Occupation::find()->all(), 'id', 'description'),
'options' => [
'multiple' => true,
],
'pluginOptions' => [
'tags' => true,
],
],
'asPopover' => false,
],
],
...];
echo GridView::widget([
'dataProvider'=>$dataProvider,
'columns'=>$gridColumns,
'filterModel' => $searchModel,
]);
保存值非常有效。但是,如果涉及到加载和显示保存的数据,我不得不四处寻找让事情运行起来。GridView 包含一个MonthlyEmployment
. MonthlyEmployment
有以下方法
* @property Occupation[] $occupations
*/
class MonthlyEmployment extends \yii\db\ActiveRecord
{
public $occupation_ids;
public function getOccuList() {
$arr = [];
foreach ($this->occupations as $ocu) {
$arr[] = $ocu->description;
}
if ($arr != null && !empty($arr)) {
return implode(', ', $arr);
} else {
return '';
}
}
所以保存的职业显示在网格视图中。但是,如果我打开模块来编辑字段,则不会选择值。下图,看看我的意思。
那么有没有人使用 Kartik GridView、Editable 和 Select2 的工作示例?