yii pdf没有显示所有记录

时间:2015-01-07 18:30:57

标签: php pdf yii yii-extensions

我刚刚安装了pdf extension 它工作正常,但运行时有一个小问题:

在管理员视图中显示所有记录(在我的情况下为1013条记录)但在pdf中仅显示207 ...

可能是什么问题?我真的很困惑......请帮忙

这是行动:

public function actionTest(){
        $model = new Teilnehmer();

        $model->attributes = $_GET['Teilnehmer']; /* to execute the filters (if is the case) */
        $dataProvider  = $model->search();

        /* if yu want to ignore the pagination and retrieve all records */
        $dataProvider->pagination = false;
        $mPDF1 = Yii::app()->ePdf->mpdf();
        $mPDF1->WriteHTML($this->renderPartial('test', array('dataProvider' => $dataProvider), true));
        $mPDF1->Output();
}

其中视图(test.php)与admin.php具有相同的内容...

我无法确定问题所在......

修改

搞定了......

我失踪了:

$model->unsetAttributes();

之后

$model = new Teilnehmer();

0 个答案:

没有答案