I'm quite new to Yii2. I'm using advanced structure
I need to show a custom sql result in a view without using a model because I would like to display a sql view.
index.php
<?= GridView::widget([
'dataProvider' => $dataProvider,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
'COD_RISORSA',
[
'label' =>"Nome",
'attribute' => 'NOME',
'value'=>function($data){
return $data["NOME"];
}
],
'COGNOME',
['class' => 'yii\grid\ActionColumn'],
],
]); ?>
VRisorseController.php
public function actionIndex()
{
$totalCount = Yii::$app->db->createCommand('SELECT COUNT(*) FROM v_risorse')->queryScalar();
$dataProvider = new SqlDataProvider([
'sql' => 'SELECT * FROM v_risorse',
'totalCount' => $totalCount,
'sort' =>false,
'pagination' => [
'pageSize' => 10,
],
]);
return $this->render('index', [
'dataProvider' => $dataProvider,
]);
}
At the following Url: http://localhost/advanced/frontend/web/index.php?r=vrisorse%2Findex
I have the error:
Not Supported – yii\base\NotSupportedException Message format 'number' is only supported for integer values. You have to install PHP intl extension to use this feature. 1. in C:\xampp\htdocs\advanced\vendor\yiisoft\yii2\i18n\MessageFormatter.php
I tried to comment all the columns in gridview, and the error seems to be related to $dataProvider
variable
'COD_RISORSA','NOME', 'COGNOME'
are columns of the select.
php.ini
uncommentextension=php_intl.dll
and restart webserver – user1852788