更改页面标签(clistview,cgridview)而不更改pager css(bootstrap)

时间:2012-08-01 13:56:07

标签: php yii

当我在CGridView中设置'pager'时它改变了bootstrap外观,我尝试使用cssFile为null或false,它不起作用。

        'pager' => array(
            'class' => 'CLinkPager',
            'firstPageLabel' => '<<',
            'prevPageLabel' => 'smthprev',
            'nextPageLabel' => 'smthnext',
            'lastPageLabel' => '>>',
        ),      

1 个答案:

答案 0 :(得分:1)

Bootstrap扩展检查是否设置了htmlOptions ['class'],即:isset($ htmlOptions ['class']),所以如果我们设置空类,那么它应该有效。所以加上这个:

    'pager' => array(
        // rest of code
        'htmlOptions'=>array('class'=>'')
    ),