nyanev
nyanev

Reputation: 11519

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.

Upvotes: 2

Views: 3478

Answers (2)

Boris Belenski
Boris Belenski

Reputation: 1412

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.

Upvotes: 3

acorncom
acorncom

Reputation: 5955

If you set overflow: scroll-x on the CSS for your grid, that should setup horizontal scrolling in your browser

Upvotes: 2

Related Questions