【发布时间】:2016-02-19 04:22:02
【问题描述】:
我正在使用 Clist View 在 facebook 上显示列表顶部帖子等数据。现在有一个下载选项。我想以 pdf 格式下载 Clist 视图数据。我在谷歌上搜索,但我没有找到最好的例子。下载pdf格式的clist视图数据应该怎么做。
列表视图小部件:
$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',),
));
【问题讨论】: