如何将黑色引导应用到我的所有gridview而不仅仅是管理员

时间:2014-02-11 10:56:59

标签: twitter-bootstrap gridview yii

我使用黑色引导程序作为mu应用程序的主题。瘦是它不适用于其他gridview期望管理gridview。

我确实尝试但无法弄清楚因此我需要知道如何才能访问它。

请让我知道

http://yii.themefactory.net/theme/133/black-bootstrap#.UvntrmKSwkw

是您可以了解它的扩展

1 个答案:

答案 0 :(得分:0)

确保您不允许默认的Yii样式干扰您的CGridView。将所有cssFile参数设置为false:

<?php $this->widget('zii.widgets.grid.CGridView', array(
    'id'=>'grid',
    'dataProvider'=>$Model->search(),
    'filter'=>$Model,
    'pagerCssClass' => 'pagination',
    'itemsCssClass' => 'table table-bordered table-striped',
    'htmlOptions' => array(
        'class' => 'container', // this is the class for the whole CGridView
    ),
    'pager' => array(
        'cssFile' => false, // Prevents Yii default CSS for pagination
    ),
    'cssFile' => false, // Prevents Yii default CSS for CGridView
    'columns' => array(
        array(
             'name' => 'your_column_name',
             'header' => 'Title for the Header',
             'headerHtmlOptions' => array(
                  'class' => 'class-for-header another-class-for-header',
             ),
             'htmlOptions' => array(
                 'class' => 'class-for-the-td',
             ),
        ),
    ),
    )) ?>

另请查看所有选项的CGridViewCDataColumn的API文档