Search code examples
phpyiiyii-extensions

Yii CGridView horizontal scroll


I develop yii application and have CGridView with many columns. I want to scroll the CGridView horizontal but can't find how.


Solution

  • You can put grid into container with fixed width and overflow: auto;.

    <div class="CGridViewContainer">
        <!-- CGridView here -->
    </div>
    

    And CSS:

    .CGridViewContainer { width: 960px; overflow: auto; }
    

    But I believe that spanning of the columns will be better way of presenting the table. Don't know how to make headers or is it possible w/o modifications.