UI5 设置一个 table 内容 density/margins 独立于其余 UI 样式

UI5 set a table content density/margins independent of the rest of UI style

在 UI5 中有几种预定义的 density / margins 模式。

我可以为 table 设置紧凑的内容密度 (sapUiSizeCompact),而其余 UI 应该继续使用 sapUiSizeCozy 吗?在 sap.m.Table 属性列表中我找不到类似 class/style.

的内容

.addStyleClass 应该适用于每个控件。我在 XML 中测试了 class,它也有效。

XML:

<Table class = "sapUiSizeCompact" />

JS:

this.byId("myTable").addStyleClass("sapUiSizeCompact");