@hnordenberg
you will do that by setting the variable on in OnChange.
Consider this
I want to notify the user if they entered a text longer than 45 characters and its not a text i expect, let's say hello.
I will check the textinput
Then set an info button to visible where the user can see they need to do something, this can be replaced by making the error text visible - i just prefer info buttons.
Because i have many inputs the variable i update is a record
In the textinput OnChange = UpdateContext({CheckIt:{id: 0, check: Self.Value}})
The visibility of the info button = CheckIt.id = 0 && Len(CheckIt.check) > 4 && CheckIt.check <> "hello"
Results
