Clist Viewを使用して、Facebookのリストトップ投稿などのデータを表示しています。今はダウンロードオプションがあります。Clistビューデータをpdf形式でダウンロードしたい。Googleで検索しましたが、最良の例が見つかりません。clist ビューのデータを pdf 形式でダウンロードするにはどうすればよいですか。
リスト ビュー ウィジェット:
$this->widget('zii.widgets.CListView', array(
'dataProvider' => $data_top_posts,
'id' => 'tbl-top-posts',
'itemView' => '_top_posts',
'template' => '{items}',
'beforeAjaxUpdate' => 'js:function(id, data){
$("#" + id + " .items span.empty").html("Loading... Please wait.");
}',
'afterAjaxUpdate' => 'js:function(){
setProgressBar("#tbl-top-posts");
}',
'viewData' => array(
'id' => 'tbl-top-posts',),
));