0

CGridViewで「pager」を設定すると、ブートストラップの外観が変更されます。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 に答える