How to render a popup in YII controller action?
i want to open new window for some actions...please help me with this... (i want this when i call a action not when i click a link)
Ex. when i go to view action in invoice controller it should open in a new window...
is there any way to render a popup...
This is my action which generate pdf using MPDF
... It should open in a new window.
public function actionReport() {
$date=Yii::app()->Date->onlyNow();
$name="ITEM Reprt(".$date.")";
$mPDF1 = Yii::app()->ePdf->mpdf('L', 'A5');
$mPDF1->WriteHTML($this->renderPartial('test', array(), true));
$mPDF1->Output($name,'I');
}
THANKS...!