I need the records that show listings in the CGridView of the admin view to be sorted alphabetically (ascending or descending) in any of the fields. Could you help me?
I need the records that show listings in the CGridView of the admin view to be sorted alphabetically (ascending or descending) in any of the fields. Could you help me?
Update your search()
function in the model and add the following code:
'criteria'=>$criteria,
//Agregar aqui
'sort'=>array(
'defaultOrder'=>'order ASC',
),
And within the admin view change the dataprovider
to:
'dataProvider' => $model->search(),
Source in English: link