In Screen OnVisible
ClearCollect( IceCream, { Flavor: "Strawberry", Quantity: 300 } );
UpdateContext({Ice:"hello"});
In Text Input
IceCream.Flavor => "there is an error in this formula"
Ice => This works fine
Anything related to get data from a collection seems not to work in a Text input.
How to set the TextBox to a default based on values in a collection?
The use case here is that in onVisible I call a custom connector and need to fill the textbox with a value of the collection that was returned. This textbox value can then be changed by the user and will update the remote server when saved.