'ajaxUpdate' = false
but the paging variable comes up with modelname_page=1 how can i set the paging variable to just 'p'
ie so p=1.
I have tried
'pageVar' => 'p'but this doesn't work as it's not supported.
btw I am using yii 1.1.10
Posted 27 June 2012 - 09:04 AM
'ajaxUpdate' = false
'pageVar' => 'p'but this doesn't work as it's not supported.
Posted 27 June 2012 - 10:38 AM
$dataProvider->getPagination()->pageVar = 'p';
$this->widget('zii.widgets.grid.CGridView', array(
'dataProvider'=>$dataProvider,
));
// if it works the CListView goes the same way