当我在CGridView中设置'pager'时它改变了bootstrap外观,我尝试使用cssFile为null或false,它不起作用。
'pager' => array(
'class' => 'CLinkPager',
'firstPageLabel' => '<<',
'prevPageLabel' => 'smthprev',
'nextPageLabel' => 'smthnext',
'lastPageLabel' => '>>',
),
答案 0 :(得分:1)
Bootstrap扩展检查是否设置了htmlOptions ['class'],即:isset($ htmlOptions ['class']),所以如果我们设置空类,那么它应该有效。所以加上这个:
'pager' => array(
// rest of code
'htmlOptions'=>array('class'=>'')
),