I have a simple array that I get into a arraydataprovider to show in the grid view.
However as i do not have a model, i also have no filtermodel.
How do I do filtering for this list now?
Any suggestions ?
$dataProvider = new ArrayDataProvider([
'allModels' => $arTableList,
'sort' => [
'attributes' => ['tablename'],
],
'pagination' => [
'pageSize' => 3000,
],
]);