Oracle Apex - headers 和不带 HTML 标记的单元格的交互式 GRID 自动换行

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

我在 Oracle Apex 工具中有一个交互式网格。我需要在没有 html 标签的情况下包装标题。

是否可以对 headers 和单元格进行自动换行?

试试这个CSS(你可以把它放在页面内联CSS属性中):

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

这对我有用。