WebContainer in WebDialog

Hi All,

I have a WebDialog with a run-time created WebContainer in it. How should I do if I want to fire a method of the WebDialog when a button is clicked in the WebContainer? I want to refresh the data in the WebDialog when an action is finished inside the WebContainer. Thanks in advance.

Tony

Usually, you’d use delegates for that purpose.
http://documentation.xojo.com/index.php/Delegate

Here’s a quick example: https://dl.dropboxusercontent.com/u/106712747/DelegateExampleWeb.xojo_binary_project

Thanks Alex.