0

CGridView を使用して、ユーザーが入力した検索パラメーターに基づいて $model からフィルター処理されたデータを表示する Web アプリケーションがあります。

私の目標は、ユーザーがボタンを押して、フィルター処理されたデータを PDF にエクスポートできるようにすることです。

これを達成するために、私は拡張子yii-pdf を使用しています。

CActiveDataProvider 配列に保存されている情報を、PDF 作成用の別のコントローラーとビューで使用するために渡す必要がありますか?

同じコントローラー/アクションを使用して、データをビューにレンダリングしてから PDF にエクスポートする方が簡単なようです。しかし、残念ながら、これを行う方法がわかりません。

前もって感謝します。

_search ビュー:

<div class="wide form"> 
<?php 
     $form = $this->beginWidget('GxActiveForm', array(
    'action' => Yii::app()->createUrl($this->route),
    'method' => 'get',
    )); 
?>                
  <!-- Search Fields here -->    
  <!-- Search and Export to PDF buttons -->
  <div class="row buttons">
      <?php echo GxHtml::submitButton(Yii::t('app', 'Search')); ?>
      <?php echo GxHtml::button(Yii::t('app', 'PDF'),  array('id' => 'exportToPdf')); ?>
  </div>    
<?php $this->endWidget(); ?>   
</div><!-- search-form -->

_pdf 表示

<div class="pdfContainer" id="pdfPage">    
  <div class="pdfHeader">
    <img src="images/logo.png" style="float:left; text-align: top;"></img>
    <div class="pdfTitle" style="text-align: right; float: right;">                    
       <h3>Service Report</h3>                    
    </div>
  </div><!-- header -->    
  <?php echo "Prepared by: ".Yii::app()->user->name."\n" ?>           
  <?php **//Possibly echo contents here?** ?>   
  <div class="clear"></div>    
    <div class="pdfFooter">         
    </div><!-- footer -->    
  </div><!-- page -->
</div>

コントローラー/アクション

public function actionPdf(){       
    $this->layout='pdf';
    /* mPDF */
    $mPDF1 = Yii::app()->ePdf->mpdf();

    /* render (full page) */
    $mPDF1->WriteHTML($this->render('pdf', array(), true));

    /* renderPartial (only 'view' of current controller) */
    $mPDF1->WriteHTML($this->renderPartial('pdf', array(), true));

    /* Outputs ready PDF */
    $mPDF1->Output();      
}

管理者ビュー:

<?php        
Yii::app()->clientScript->registerScript('search', "       
   $('#exportToPdf').click(function(){
   window.location = '". $this->createUrl('Weeklyservicereport/pdf') . "?' + $(this).parents('form').serialize() + '&export=true';
   return false;
});           

$('.search-form form').submit(function(){
    $('#weeklyservicereport-grid').yiiGridView('update', {
        data: $(this).serialize()
    });
    return false;
    });
    ");
?>
<div class="search-form" style="display:block">               
    <?php $this->renderPartial('_search', array('model' => $model,)); ?>           
</div> <!-- Search Form -->
/* Gridview Widget */  
<?php $this->widget('application.components.widgets.tlbExcelView', array(
    'id'            => 'weeklyservicereport-grid',
    'dataProvider'  => $model->search(),
     .....
     .....
    'columns'=>array(
        /* Column names */
    ),
 )); 
?>
4

1 に答える 1