Yii2 Kartik-v可编辑列更新多个表格单元格

时间:2015-11-19 14:00:32

标签: php gridview yii2

我使用Kartik Editable扩展为Yii2中的GridView设置了可编辑列。我面临的问题是我找不到从一个可编辑列更新多个表格单元格的方法。 我做的事情: GridView专栏

[
                    'class' => 'kartik\grid\EditableColumn',
                    'attribute'=>'post_title',
                    'editableOptions'=> function ($model, $key, $index) {

                            return [
                                'inputType' => \kartik\editable\Editable::INPUT_TEXT,
                                'size'=>'sm',
                                'afterInput'=>function ($form, $widget) use ($model, $index) {
                                    return $form->field($model, 'post_description')->textInput(['placeholder'=>'Enter post title']);
                                }
                            ];
                        }

                ],

点击编辑帖子标题栏,会显示标题和说明的编辑字段

PostsController行动

public function actionIndex()
    {
        $searchModel = new PostsSearch();
        $dataProvider = $searchModel->search(Yii::$app->request->queryParams);

        if (Yii::$app->request->post('hasEditable')) {
            $postId = Yii::$app->request->post('editableKey');
            $model = Posts::findOne($postId);

            $out = Json::encode(['output'=>'', 'message'=>'']);

            $post = [];
            $posted = current($_POST['Posts']);
            $post['Posts'] = $posted;

            if ($model->load($post)) {
                $output = '';
                $out = Json::encode(['output'=>$output, 'message'=>'']);
                $model->save();
            }
            echo $out;
            return;
        }

        return $this->render('index', [
                'searchModel' => $searchModel,
                'dataProvider' => $dataProvider,
        ]);
    }

因此,当我编辑帖子标题和描述时,只有帖子标题保存到数据库中。 我认为这是因为当前只保存一个值

$posted = current($_POST['Posts']);

保存两者的正确方法是什么 $ model-> post_title $ model-> post_description

1 个答案:

答案 0 :(得分:0)

这是Ajax可编辑的列。一次只能将一个值发送到控制器。

因此post_titlepost_description列的类在视图中必须是可编辑的。

这在您每次编辑这些列时都应该起作用。

也更改

if ($model->load($post)) {
    if (isset($model->post_title)){
        // here you can format the value of the attribute
          and display on the screen
             $output = $model->post_title;
    }
    if (isset($model->post_description)){
        $output = $model->post_description;
    } 
    $model->save();
    // Here you send a message that the value has been saved
    $out = Json::encode(['output'=>$output, 'message'=>'Saved']);                
}