i have a question about sorting in Yii DataProvider. I want to sort it excatly like im doing it now, but starting with 3rd record DESC. Not first, second, but third record. Something like “limit => ‘3’ criteria. Any ideas?
$dataProvider=new CActiveDataProvider('News', array(
'criteria'=>array(
'order'=>'create_time DESC',
),
'pagination'=>array(
'pageSize'=>10,
),
));
Configure the
offsetproperty on the criteria: