Overview
In legacy Construct, Data Tooltip View displayed additional record information in a tooltip when users hovered over grid cells. Cloud Construct does not support hover-based tooltips for data display, but you can consider redesigning your page with click-to-detail container design patterns that provide better accessibility.
Updated Methodology
Approach A: Column Header Tooltip
Configure static tooltip on column headers using the Tooltip field. Users see guidance when hovering column header. Limited to static text, not data-driven.
Approach B: Master-Detail Data Binding
Configure the parent grid (master) container with the required columns from the dataset and a form (detail) container with columns that provides additional/supplemental information. The detail form dynamically loads data specific to each row selected, but using an accessible click-based pattern instead of hover.
Add Data Bindings to the form container bound to the grid container.
When a user clicks a grid row, the detail form displays the full information with all related data (not a tooltip), enabling the user to view details without a hover.