
anyone can help me, this is my code :
$model = new CActiveDataProvider('GlVoucher',array(
'criteria' => array(
'condition' => "
voucher_date >= '".Yii::app()->session['periode_from']."'
and voucher_date <= '".Yii::app()->session['periode_to']."'",
'select' => 'distinct voucher_no,voucher_date,voucher_remarks as remarks',
'order' => 'voucher_no,voucher_date asc',
),
'pagination'=>array(
'pageSize'=>10
),
'defaultOrder' => 'voucher_date ASC',
),
*/
));this work for me, but for count of page is not 'distinct' first.
the result is have a blank page at the end.

Help











