You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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("")
)
)
The text was updated successfully, but these errors were encountered:
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:
Example B - We have property table (Owner: id, Name: str, Value: str) and want show hint for some properties
The text was updated successfully, but these errors were encountered: