2016-05-18 13 views
1

このビューでは、buttonsを追加するとエラーページが作成されます。GridViewから更新ボタンを削除しますか?

Updateボタンを削除するにはどうすればよいですか?ここで

enter image description here

私の見解である:

<?= GridView::widget([ 
    'dataProvider' => $dataProvider, 
    'filterModel' => $searchModel, 
    'columns' => [ 
     ['class' => 'yii\grid\SerialColumn'], 

     'user.username', 
     'title', 
     'img_title', 
     'note_type', 

     ['class' => 'yii\grid\ActionColumn'], 

     // I do not want the Update button. 
     // Adding this 'button' creates a error. 
     // 'buttons' => ['{view},{delete}'] 

    ], 
]); ?> 

エラー同じ問題を持っている他のユーザーのために、 'ボタン' 申し訳

Unknown Property – yii\base\UnknownPropertyException 
Setting unknown property: yii\grid\DataColumn::0 

答えて

3

を追加する場合:

値:

変更
['class' => 'yii\grid\ActionColumn'], 

[ 
    'class' => 'yii\grid\ActionColumn', 
    'template' => '{view} {delete}' 
], 

はトリックをしました。

関連する問題