...

StyleCode Property: entryTooltip

entryTooltip

Sets the tooltip of the entry.

Applies to Type Default
form > entry
menu > entry
summary > entry
Text ""

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)

User Contributed Notes
0 notes + add a note