I have no success in setting no pagination in CGridView. What I do:
1. Add this portion of code in the controller
$details = new CActiveDataProvider('SalesDetail', array(
'criteria' => array(
'condition' => 'salesFk = :sFk',
'params' => array(':sFk' => $model->id),
),
'pagination' => false));
2. Add 'enablePagination' to 'false' in CGridView.
step 2 no problem, no pagination portion of the CGridView. Hoever, I got problem on step 1. Error because I set to false.
Any help on this?
Cheers,
Daniel

Help














