Yii - CListView - 外部排序链接和分页

时间:2014-12-09 10:00:34

标签: php sorting yii pagination clistview

我在View页面中使用'CListView'。我需要通过“A-Z”或“Z-A”之类的外部链接对CListView进行排序。这些链接位于列表上方。

以下是我的视图页面中的代码 -

    $model = new Whisky();
    $dataProvider = $model->dashboard_whisky_list();
    $this->widget('zii.widgets.CListView', array(
        'id'=>'whisky-grid',
        'dataProvider'=>$dataProvider,
        'itemView'=>'_whisky_list',
        'template'=>'{pager}{items}{pager}',
        'ajaxUpdate'=>true,
        'beforeAjaxUpdate' => 'js:function(id) {showLoader();}',
        'afterAjaxUpdate' => 'js:function(id, data) {hideLoader();}',
));

我的视图还包含2个CListViews。 有可能通过这种方式排序吗?我的分页也不适用于Ajax。

Click Here to see the screenshot.

请帮忙。

0 个答案:

没有答案