Coding Duchess
Coding Duchess

Reputation: 6919

Oracle APEX Interactive grid overflows the region

I have a couple of interactive grids on my page and one of them is overflowing the region. I have tried resizing columns but no matter what I do, the grid bounces right back - overflowing the region. It almost seems as if there is a minimum width property set somewhere but I cannot figure it out.

Upvotes: 0

Views: 1608

Answers (1)

Zachary Wilson zwils0
Zachary Wilson zwils0

Reputation: 100

Under Advanced settings for the interactive grid there is a column that says custom attributes. This field allows you to type in CSS that can override the default CSS. My recommendation would be to play with this column with commands such as

style="width: 90%;"

This would reduce the maximum width the interactive grid will take up (from 100% of screen to 90% of screen).

Additionally when looking at the page you can hit F12 to open a web inspect that could help show more details about the CSS of the grid. If this doesn't help could you provide a screenshot or demo so we can further assist.

Upvotes: 1

Related Questions