Maya
Maya

Reputation: 45

Oracle Apex - Interactive GRID Word wrap for headers and cells without HTML tag

I have an interactive grid in Oracle Apex tool. I need to wrap the heading without html tag.

Is it possible to do a word wrap on headers and cells ?

Upvotes: 3

Views: 5178

Answers (1)

Tony Andrews
Tony Andrews

Reputation: 132570

Try this CSS (you can put it in the page Inline CSS attribute):

.a-GV-table td, .a-GV-headerLabel {
    white-space: normal;
}

That works for me.

Upvotes: 5

Related Questions