Blame view

protected/modules/admin/components/widgets/BGridView.php 432 Bytes
a1684257   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?php
  /**
   * Customized CGridView to use styles from bootstrap
   */
  Yii::import('zii.widgets.grid.CGridView');
  class BGridView extends CGridView
  {
      public $htmlOptions = array(
          'class' => '',
      );
      public $itemsCssClass = 'table table-striped table-bordered table-condensed';
      public $summaryCssClass = 'pull-right';
      public $pagerCssClass = 'pull-right';
      public $pager = array('class' => 'BLinkPager');
  
  }