I work with yii1.
I have a multi-page list of records, which is displayed using CGridView, sorted in a certain way.
I have id of the record. And I want to open the page on which this record with this exact id is displayed.
Roughly speaking, link /list?too=123 opens the 12th page of the grid, and among all records on this page there is an entry with id 123.
What's the easiest way to do this?
My way of doing it-
$model->search()to theCGridView.Hope it helps.