Navigation :
StyleCode Property: entryTooltip
entryTooltip
Sets the tooltip of the entry.
Examples
// Example: form > entry
read form with
SKU: text
Maximum: number
show form "My Form" a1b1 with
SKU { entryTooltip: "My tooltip description" }
Maximum
// Example: menu > entry
show menu "" a1b3 with
"Section" { entryTooltip: "My tooltip description" }
// Example: summary > entry
table Sales = with
[| as Quantity, as NetAmount |]
[| 10, 40 |]
[| 2, 10 |]
[| 1, 20 |]
show summary "My Summary" a1b3 with
sum(Sales.Quantity) { entryTooltip: "My tooltip description" }
sum(Sales.NetAmount)