Reputation: 675
I am showing data from CSqlDataProvider with pagination, I want to add sorting for my results
my situation is-
I get the data with
$dataProvider=new CSqlDataProvider($sqlAll, array( 'totalItemCount'=>$count, 'pagination'=>array('pageSize'=>$pageSize,), 'params' => $params ));after I get the results I calculate 2 more fields to show(which are not extracted with the $sqlAll query) and sort according to them
Upvotes: 1
Views: 148
Reputation: 532
You could add the calculated fields in one of two ways:
Upvotes: 1