We're attempting to migrate a PowerBuilder app to PowerServer. The app runs great in PB 2019.
We’re trying to launch a user interactive process in a response window that must be available to the user AFTER the window is opened AND visible to the user.
In the response window’s “open" event (after code that initializes the window) we make the following call which is flagged by the PowerServer Analyzer as unsupported:
this.post event ue_response_run()
Using “trigger” rather than “post” (as in the following) doesn’t work because the code in “ue_respone_run” executes before the response window is visible to the user:
this.trigger event ue_response_run()