Reputation: 45
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
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