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の表形式があり、そのすべての列が標準のレポート列です。レポートの特定のセルの上にマウスオーバーしてツールチップを表示することは可能ですか?
レポートの列属性で、ColumnFormattingという名前の領域を探します。このセクション内には、「HTML式」のテキストボックスがあります。ここで、レポート列の内容にhtmlを追加できます。<span title="My tooltip text">#COLUMN_NAME#</span>
<span title="My tooltip text">#COLUMN_NAME#</span>
ツールチップのテキストは別の列からのものである可能性があります。title属性の内容をハッシュで囲まれた列名に置き換えるだけです。