-
Notifications
You must be signed in to change notification settings - Fork 100
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Goal: Inline optional help for user to understand data
New function for calculated field - Hint(content: Markup, body: Optional[Markup])
When user hover hint body - he view hint box with content
If body not defined - use some default hint symbol, like ℹ️
Example A - We have some complex calculation and want show formula and source data:
SquareTextField = Markup(SquareField, Hint(Markup("Formula is ", Bold("Pi * R * R"), ", where ", Bold("R"), " is", RadiusField), Bold("?"))
Example B - We have property table (Owner: id, Name: str, Value: str) and want show hint for some properties
NameWithHint = Markup(
Name,
IF(
Name = "TTM",
Hint("Time from store...."),
Markup("")
)
)
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
