Wrong styles for itemsCssClass

Issue #43 on hold
Dmitry Strizhov created an issue
<?php $this->widget('bootstrap.widgets.BsGridView',array(
    'id'=>'user-grid',
    'dataProvider'=>$model->search(),
    'filter'=>$model,
    'columns'=>array(
        'id',
        'username',
        'password',
        'salt',
        'activationKey',
        'createtime',

        array(
            'class'=>'bootstrap.widgets.BsButtonColumn',
        ),
    ),
    'htmlOptions'=>array(
        'itemsCssClass'=>'table table-striped table-bordered table-hover',
        'class'=>'table-responsive',
    )
)); ?>

generate

<div itemscssclass="table table-striped table-bordered table-hover" class="table-responsive" id="user-grid">
<table class="items table">
....

Comments (4)

  1. Log in to comment