Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 APEX 表格形式,其中所有列都是标准报告列。是否可以在鼠标悬停在报告的特定单元格上时显示工具提示?
在报告列属性中查找名为 Column Formatting 的区域。此部分内部是“HTML 表达式”的文本框。在这里,您可以将 html 添加到报告列内容中,例如,<span title="My tooltip text">#COLUMN_NAME#</span>
<span title="My tooltip text">#COLUMN_NAME#</span>
工具提示文本可能来自另一列,您只需将 title 属性的内容替换为由散列包围的列名。