I have an array:
$arr = ['ID' => 'A1', 'Description' => 'Item to be sold', ...]
In controller:
$provider = new ArrayDataProvider([
'allModels' => $arr,
//'sort' =>['attributes' => ['ID', 'Description'],],
'pagination' => ['pageSize' => 5]
]);
$this -> render('index', ['provider' => $arr]);
In view (index.php):
GridView::widget([
'dataProvider' => $provider,
]);
And there is no result on page. Where it is wrong?