this bug doesn't allow to change the configuration parameters of the
RAssignmentDataProvider because its construct accept 2 arguments, but on
actionView it call with 1 arg.
Solution:
1) in AssignmentController::actionView to add null
$dataProvider = new RAssignmentDataProvider(null, array(
'pagination'=>array(
'pageSize'=>50,
),
));
2) In RAssignmentDataProvider change construct without $modelClass:
__construct($config=array())
Original issue reported on code.google.com by marco.pa...@gmail.com on 29 Mar 2011 at 3:39
Original issue reported on code.google.com by
marco.pa...@gmail.com
on 29 Mar 2011 at 3:39