I had the same problem on the site myself.
This problem occurs when the water we use clistView class .and not povide data for ‘dataProvider’ property.
This problem often occurs when searching. Because the first string is sent to the search action., But when we click on the next page. These parameters can not be added to the action search.
for example in code:
public function actionCentralSearch() {
$model=new searchForm;
if(isset($_POST['searchForm']))
{
$model->attributes=$_POST['searchForm'];
if($model->validate())
{
$vulnerData= Vulner::model()->centralSearch($model->searchSTR);
$newsData= News::model()->centralSearch($model->searchSTR);
}
}
$this->render('search_result',array(
'model'=>$model,
// 'faqData'=>(isset($faqData))?($faqData):null,
'newsData'=>(isset($newsData))?($newsData):null,
'vulnerData'=>(isset($vulnerData))?($vulnerData):null,
));
}