Page History
...
In this example, the application would behave precisely as intended, with details being hidden and then shown again when the data is returned:
Evtroutine Handling(#List.ItemGotFocus)
#Details.visible := False
#GetData.ExecuteAsync(#Data)
Evtroutine #GetData.completed
#Details.visible := True
Endroutine
Endroutine