0

当我在 CGridView 中设置“寻呼机”时,它会更改引导程序外观,我尝试将 cssFile 设置为 null 或 false,但它不起作用。

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

1 回答 1

1

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

    'pager' => array(
        // rest of code
        'htmlOptions'=>array('class'=>'')
    ),
于 2012-08-01T14:27:10.947 回答