hola soy nuevo trabajando en yii2 y desarrollando.
Por favor necesito ayuda me aparece este mensaje y no se como solucionarlo,
hola soy nuevo trabajando en yii2 y desarrollando.
Por favor necesito ayuda me aparece este mensaje y no se como solucionarlo,
Hi @NEIDERSERRANO, welcome to the forum.
Please use English in all the forums of this site other than in “International” sub-forums.
Setting unknown property: yii\grid\GridView::pjax]
As the error message says, you have an error in setting a gridview.
Hola @NEIDERSERRANO;
Al parecer estás intentando acceder a una propiedad de la clase GridView que no existe, El Pjax es un Widget totalmente aparte del GridView
Un ejemplo de como puedes resolver el problema con el siguiente código
<?php
use \yii\grid\GridView;
use \yii\widgets\Pjax;
Pjax::begin(); // <-- Instancia del Pjax ?>
<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
['class' => 'yii\grid\ActionColumn'],
],
]); ?>
<?php Pjax::end(); ?>